pattern-fill 0.1.2__tar.gz → 0.1.2a0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/PKG-INFO +1 -1
  2. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/pyproject.toml +1 -1
  3. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/uv.lock +1 -1
  4. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/.github/workflows/deploy-pages.yml +0 -0
  5. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/.github/workflows/publish-pypi.yml +0 -0
  6. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/.gitignore +0 -0
  7. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/.python-version +0 -0
  8. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/.vscode/settings.json +0 -0
  9. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/LICENSE +0 -0
  10. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/README.md +0 -0
  11. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/examples/sine_wave_demo.py +0 -0
  12. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/main.py +0 -0
  13. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/notebooks/pattern_designer.py +0 -0
  14. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/src/pattern_fill/__init__.py +0 -0
  15. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/src/pattern_fill/fitting.py +0 -0
  16. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/src/pattern_fill/gap_fill.py +0 -0
  17. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/src/pattern_fill/pattern.py +0 -0
  18. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/src/pattern_fill/sine_fitting.py +0 -0
  19. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_dataset_fill.py +0 -0
  20. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_fitting.py +0 -0
  21. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_gap_fill.py +0 -0
  22. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_pattern.py +0 -0
  23. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_sine_component.py +0 -0
  24. {pattern_fill-0.1.2 → pattern_fill-0.1.2a0}/tests/test_sine_fitting.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pattern-fill
3
- Version: 0.1.2
3
+ Version: 0.1.2a0
4
4
  Summary: Time series gap-filling using daily diurnal patterns
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.10
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pattern-fill"
3
- version = "0.1.2"
3
+ version = "0.1.2a"
4
4
  description = "Time series gap-filling using daily diurnal patterns"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -1659,7 +1659,7 @@ wheels = [
1659
1659
 
1660
1660
  [[package]]
1661
1661
  name = "pattern-fill"
1662
- version = "0.1.2"
1662
+ version = "0.1.2a0"
1663
1663
  source = { editable = "." }
1664
1664
  dependencies = [
1665
1665
  { name = "meteaudata" },
File without changes
File without changes
File without changes
File without changes