pylunar 0.7.1__tar.gz → 0.7.2__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 (39) hide show
  1. {pylunar-0.7.1 → pylunar-0.7.2}/HISTORY.rst +5 -0
  2. {pylunar-0.7.1 → pylunar-0.7.2}/PKG-INFO +1 -1
  3. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/helpers.py +1 -1
  4. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/lunar_feature.py +1 -1
  5. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/moon_info.py +1 -1
  6. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/PKG-INFO +1 -1
  7. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/SOURCES.txt +1 -1
  8. {pylunar-0.7.1 → pylunar-0.7.2}/.pre-commit-config.yaml +0 -0
  9. {pylunar-0.7.1 → pylunar-0.7.2}/AUTHORS.rst +0 -0
  10. {pylunar-0.7.1 → pylunar-0.7.2}/CONTRIBUTING.rst +0 -0
  11. {pylunar-0.7.1 → pylunar-0.7.2}/LICENSE +0 -0
  12. {pylunar-0.7.1 → pylunar-0.7.2}/MANIFEST.in +0 -0
  13. {pylunar-0.7.1 → pylunar-0.7.2}/Makefile +0 -0
  14. {pylunar-0.7.1 → pylunar-0.7.2}/README.rst +0 -0
  15. {pylunar-0.7.1 → pylunar-0.7.2}/docs/Makefile +0 -0
  16. {pylunar-0.7.1 → pylunar-0.7.2}/docs/authors.rst +0 -0
  17. {pylunar-0.7.1 → pylunar-0.7.2}/docs/conf.py +0 -0
  18. {pylunar-0.7.1 → pylunar-0.7.2}/docs/contributing.rst +0 -0
  19. {pylunar-0.7.1 → pylunar-0.7.2}/docs/history.rst +0 -0
  20. {pylunar-0.7.1 → pylunar-0.7.2}/docs/index.rst +0 -0
  21. {pylunar-0.7.1 → pylunar-0.7.2}/docs/installation.rst +0 -0
  22. {pylunar-0.7.1 → pylunar-0.7.2}/docs/make.bat +0 -0
  23. {pylunar-0.7.1 → pylunar-0.7.2}/docs/usage.rst +0 -0
  24. {pylunar-0.7.1 → pylunar-0.7.2}/pyproject.toml +0 -0
  25. {pylunar-0.7.1 → pylunar-0.7.2}/scripts/startup.py +0 -0
  26. {pylunar-0.7.1 → pylunar-0.7.2}/setup.cfg +0 -0
  27. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/__init__.py +0 -0
  28. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/data/lunar.db +0 -0
  29. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar/lunar_feature_container.py +0 -0
  30. /pylunar-0.7.1/src/pylunar/types.py → /pylunar-0.7.2/src/pylunar/pkg_types.py +0 -0
  31. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/dependency_links.txt +0 -0
  32. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/requires.txt +0 -0
  33. {pylunar-0.7.1 → pylunar-0.7.2}/src/pylunar.egg-info/top_level.txt +0 -0
  34. {pylunar-0.7.1 → pylunar-0.7.2}/tests/__init__.py +0 -0
  35. {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_helpers.py +0 -0
  36. {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_lunar_feature.py +0 -0
  37. {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_lunar_feature_container.py +0 -0
  38. {pylunar-0.7.1 → pylunar-0.7.2}/tests/test_moon_info.py +0 -0
  39. {pylunar-0.7.1 → pylunar-0.7.2}/tox.ini +0 -0
@@ -3,6 +3,11 @@
3
3
  History
4
4
  -------
5
5
 
6
+ 0.7.2 (2024-02-26)
7
+ ++++++++++++++++++
8
+
9
+ * Change types module to pkg_types to avoid shadowing builtin
10
+
6
11
  0.7.1 (2024-02-11)
7
12
  ++++++++++++++++++
8
13
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pylunar
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: Information for completing the Astronomical League's Lunar and Lunar II observing programs.
5
5
  Author-email: Michael Reuter <mareuternh@gmail.com>
6
6
  Project-URL: Documentation, http://pylunar.readthedocs.io
@@ -16,7 +16,7 @@ __all__ = ["mjd_to_date_tuple", "tuple_to_string"]
16
16
 
17
17
  import ephem
18
18
 
19
- from .types import DateTimeTuple, DmsCoordinate
19
+ from .pkg_types import DateTimeTuple, DmsCoordinate
20
20
 
21
21
 
22
22
  def mjd_to_date_tuple(mjd: float, round_off: bool = False) -> DateTimeTuple:
@@ -17,7 +17,7 @@ __all__ = ["LunarFeature"]
17
17
  import math
18
18
  import os
19
19
 
20
- from .types import FeatureRow, Range
20
+ from .pkg_types import FeatureRow, Range
21
21
 
22
22
 
23
23
  class LunarFeature:
@@ -24,7 +24,7 @@ import pytz
24
24
 
25
25
  from .helpers import mjd_to_date_tuple, tuple_to_string
26
26
  from .lunar_feature import LunarFeature
27
- from .types import DateTimeTuple, DmsCoordinate, MoonPhases
27
+ from .pkg_types import DateTimeTuple, DmsCoordinate, MoonPhases
28
28
 
29
29
 
30
30
  class PhaseName(Enum):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pylunar
3
- Version: 0.7.1
3
+ Version: 0.7.2
4
4
  Summary: Information for completing the Astronomical League's Lunar and Lunar II observing programs.
5
5
  Author-email: Michael Reuter <mareuternh@gmail.com>
6
6
  Project-URL: Documentation, http://pylunar.readthedocs.io
@@ -23,7 +23,7 @@ src/pylunar/helpers.py
23
23
  src/pylunar/lunar_feature.py
24
24
  src/pylunar/lunar_feature_container.py
25
25
  src/pylunar/moon_info.py
26
- src/pylunar/types.py
26
+ src/pylunar/pkg_types.py
27
27
  src/pylunar.egg-info/PKG-INFO
28
28
  src/pylunar.egg-info/SOURCES.txt
29
29
  src/pylunar.egg-info/dependency_links.txt
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes