pylunar 0.7.1__tar.gz → 0.7.3__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 (41) hide show
  1. {pylunar-0.7.1 → pylunar-0.7.3}/.pre-commit-config.yaml +5 -5
  2. {pylunar-0.7.1 → pylunar-0.7.3}/HISTORY.rst +10 -0
  3. {pylunar-0.7.1 → pylunar-0.7.3}/PKG-INFO +11 -10
  4. {pylunar-0.7.1 → pylunar-0.7.3}/pyproject.toml +10 -9
  5. pylunar-0.7.3/renovate.json +12 -0
  6. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/helpers.py +1 -1
  7. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/lunar_feature.py +1 -1
  8. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/moon_info.py +1 -1
  9. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar.egg-info/PKG-INFO +11 -10
  10. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar.egg-info/SOURCES.txt +2 -1
  11. pylunar-0.7.3/src/pylunar.egg-info/requires.txt +30 -0
  12. pylunar-0.7.1/src/pylunar.egg-info/requires.txt +0 -25
  13. {pylunar-0.7.1 → pylunar-0.7.3}/AUTHORS.rst +0 -0
  14. {pylunar-0.7.1 → pylunar-0.7.3}/CONTRIBUTING.rst +0 -0
  15. {pylunar-0.7.1 → pylunar-0.7.3}/LICENSE +0 -0
  16. {pylunar-0.7.1 → pylunar-0.7.3}/MANIFEST.in +0 -0
  17. {pylunar-0.7.1 → pylunar-0.7.3}/Makefile +0 -0
  18. {pylunar-0.7.1 → pylunar-0.7.3}/README.rst +0 -0
  19. {pylunar-0.7.1 → pylunar-0.7.3}/docs/Makefile +0 -0
  20. {pylunar-0.7.1 → pylunar-0.7.3}/docs/authors.rst +0 -0
  21. {pylunar-0.7.1 → pylunar-0.7.3}/docs/conf.py +0 -0
  22. {pylunar-0.7.1 → pylunar-0.7.3}/docs/contributing.rst +0 -0
  23. {pylunar-0.7.1 → pylunar-0.7.3}/docs/history.rst +0 -0
  24. {pylunar-0.7.1 → pylunar-0.7.3}/docs/index.rst +0 -0
  25. {pylunar-0.7.1 → pylunar-0.7.3}/docs/installation.rst +0 -0
  26. {pylunar-0.7.1 → pylunar-0.7.3}/docs/make.bat +0 -0
  27. {pylunar-0.7.1 → pylunar-0.7.3}/docs/usage.rst +0 -0
  28. {pylunar-0.7.1 → pylunar-0.7.3}/scripts/startup.py +0 -0
  29. {pylunar-0.7.1 → pylunar-0.7.3}/setup.cfg +0 -0
  30. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/__init__.py +0 -0
  31. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/data/lunar.db +0 -0
  32. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar/lunar_feature_container.py +0 -0
  33. /pylunar-0.7.1/src/pylunar/types.py → /pylunar-0.7.3/src/pylunar/pkg_types.py +0 -0
  34. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar.egg-info/dependency_links.txt +0 -0
  35. {pylunar-0.7.1 → pylunar-0.7.3}/src/pylunar.egg-info/top_level.txt +0 -0
  36. {pylunar-0.7.1 → pylunar-0.7.3}/tests/__init__.py +0 -0
  37. {pylunar-0.7.1 → pylunar-0.7.3}/tests/test_helpers.py +0 -0
  38. {pylunar-0.7.1 → pylunar-0.7.3}/tests/test_lunar_feature.py +0 -0
  39. {pylunar-0.7.1 → pylunar-0.7.3}/tests/test_lunar_feature_container.py +0 -0
  40. {pylunar-0.7.1 → pylunar-0.7.3}/tests/test_moon_info.py +0 -0
  41. {pylunar-0.7.1 → pylunar-0.7.3}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  repos:
2
2
  - repo: https://github.com/pre-commit/pre-commit-hooks
3
- rev: v4.5.0
3
+ rev: v4.6.0
4
4
  hooks:
5
5
  - id: check-merge-conflict
6
6
  - id: check-toml
@@ -8,18 +8,18 @@ repos:
8
8
  - id: trailing-whitespace
9
9
 
10
10
  - repo: https://github.com/astral-sh/ruff-pre-commit
11
- rev: v0.1.11
11
+ rev: v0.6.8
12
12
  hooks:
13
13
  - id: ruff
14
14
  args: [--fix, --exit-non-zero-on-fix]
15
15
  - id: ruff-format
16
16
 
17
17
  - repo: https://github.com/pre-commit/mirrors-mypy
18
- rev: v1.8.0
18
+ rev: v1.11.2
19
19
  hooks:
20
20
  - id: mypy
21
21
  args: [--strict]
22
- additional_dependencies: [types-pytz==2024.1.0.20240203]
22
+ additional_dependencies: [types-pytz==2024.2.0.20240913]
23
23
 
24
24
  - repo: https://github.com/numpy/numpydoc
25
25
  rev: v1.6.0
@@ -27,6 +27,6 @@ repos:
27
27
  - id: numpydoc-validation
28
28
 
29
29
  - repo: https://github.com/tox-dev/tox-ini-fmt
30
- rev: "1.3.1"
30
+ rev: "1.4.1"
31
31
  hooks:
32
32
  - id: tox-ini-fmt
@@ -3,6 +3,16 @@
3
3
  History
4
4
  -------
5
5
 
6
+ 0.7.3 (2024-09-29)
7
+ ++++++++++++++++++
8
+
9
+ * Updates to project dependencies
10
+
11
+ 0.7.2 (2024-02-26)
12
+ ++++++++++++++++++
13
+
14
+ * Change types module to pkg_types to avoid shadowing builtin
15
+
6
16
  0.7.1 (2024-02-11)
7
17
  ++++++++++++++++++
8
18
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pylunar
3
- Version: 0.7.1
3
+ Version: 0.7.3
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
@@ -19,20 +19,21 @@ Description-Content-Type: text/x-rst
19
19
  License-File: LICENSE
20
20
  License-File: AUTHORS.rst
21
21
  Requires-Dist: ephem==4.1.5
22
- Requires-Dist: importlib-resources==6.1.1; python_version < "3.10"
23
- Requires-Dist: typing-extensions==4.9.0; python_version < "3.10"
24
- Requires-Dist: pytz==2024.1
22
+ Requires-Dist: importlib-resources==6.4.5; python_version < "3.10"
23
+ Requires-Dist: typing-extensions==4.12.2; python_version < "3.10"
24
+ Requires-Dist: pytz==2024.2
25
25
  Provides-Extra: dev
26
26
  Requires-Dist: pylunar[build,docs,lint,test]; extra == "dev"
27
- Requires-Dist: tox==4.11.4; extra == "dev"
27
+ Requires-Dist: tox==4.20.0; extra == "dev"
28
28
  Provides-Extra: test
29
- Requires-Dist: coverage[toml]==7.4.0; extra == "test"
30
- Requires-Dist: pytest==7.4.4; extra == "test"
29
+ Requires-Dist: coverage[toml]==7.6.1; extra == "test"
30
+ Requires-Dist: pytest==8.3.3; extra == "test"
31
31
  Provides-Extra: lint
32
- Requires-Dist: pre-commit~=3.5.0; extra == "lint"
32
+ Requires-Dist: pre-commit==3.5.0; python_version < "3.9" and extra == "lint"
33
+ Requires-Dist: pre-commit==3.8.0; python_version >= "3.9" and extra == "lint"
33
34
  Provides-Extra: build
34
- Requires-Dist: build==1.0.3; extra == "build"
35
- Requires-Dist: twine==4.0.2; extra == "build"
35
+ Requires-Dist: build==1.2.2; extra == "build"
36
+ Requires-Dist: twine==5.1.1; extra == "build"
36
37
  Provides-Extra: docs
37
38
  Requires-Dist: sphinx~=7.1; extra == "docs"
38
39
  Requires-Dist: sphinx_rtd_theme==2.0.0; extra == "docs"
@@ -28,9 +28,9 @@ classifiers = [
28
28
  ]
29
29
  dependencies = [
30
30
  "ephem==4.1.5",
31
- "importlib-resources==6.1.1;python_version<'3.10'",
32
- "typing-extensions==4.9.0;python_version<'3.10'",
33
- "pytz==2024.1"
31
+ "importlib-resources==6.4.5;python_version<'3.10'",
32
+ "typing-extensions==4.12.2;python_version<'3.10'",
33
+ "pytz==2024.2"
34
34
  ]
35
35
 
36
36
  [project.urls]
@@ -40,18 +40,19 @@ Repository = "https://github.com/mareuter/pylunar"
40
40
  [project.optional-dependencies]
41
41
  dev = [
42
42
  "pylunar[build,docs,lint,test]",
43
- "tox==4.11.4"
43
+ "tox==4.20.0"
44
44
  ]
45
45
  test = [
46
- "coverage[toml]==7.4.0",
47
- "pytest==7.4.4",
46
+ "coverage[toml]==7.6.1",
47
+ "pytest==8.3.3",
48
48
  ]
49
49
  lint = [
50
- "pre-commit~=3.5.0"
50
+ "pre-commit==3.5.0;python_version<'3.9'",
51
+ "pre-commit==3.8.0;python_version>='3.9'"
51
52
  ]
52
53
  build = [
53
- "build==1.0.3",
54
- "twine==4.0.2"
54
+ "build==1.2.2",
55
+ "twine==5.1.1"
55
56
  ]
56
57
  docs = [
57
58
  "sphinx~=7.1",
@@ -0,0 +1,12 @@
1
+ {
2
+ "enabled": true,
3
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
4
+ "extends": [
5
+ "config:best-practices",
6
+ ":rebaseStalePrs"
7
+ ],
8
+ "timezone": "America/Phoenix",
9
+ "schedule": [
10
+ "on the 26th day of the month before 8am"
11
+ ]
12
+ }
@@ -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.3
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
@@ -19,20 +19,21 @@ Description-Content-Type: text/x-rst
19
19
  License-File: LICENSE
20
20
  License-File: AUTHORS.rst
21
21
  Requires-Dist: ephem==4.1.5
22
- Requires-Dist: importlib-resources==6.1.1; python_version < "3.10"
23
- Requires-Dist: typing-extensions==4.9.0; python_version < "3.10"
24
- Requires-Dist: pytz==2024.1
22
+ Requires-Dist: importlib-resources==6.4.5; python_version < "3.10"
23
+ Requires-Dist: typing-extensions==4.12.2; python_version < "3.10"
24
+ Requires-Dist: pytz==2024.2
25
25
  Provides-Extra: dev
26
26
  Requires-Dist: pylunar[build,docs,lint,test]; extra == "dev"
27
- Requires-Dist: tox==4.11.4; extra == "dev"
27
+ Requires-Dist: tox==4.20.0; extra == "dev"
28
28
  Provides-Extra: test
29
- Requires-Dist: coverage[toml]==7.4.0; extra == "test"
30
- Requires-Dist: pytest==7.4.4; extra == "test"
29
+ Requires-Dist: coverage[toml]==7.6.1; extra == "test"
30
+ Requires-Dist: pytest==8.3.3; extra == "test"
31
31
  Provides-Extra: lint
32
- Requires-Dist: pre-commit~=3.5.0; extra == "lint"
32
+ Requires-Dist: pre-commit==3.5.0; python_version < "3.9" and extra == "lint"
33
+ Requires-Dist: pre-commit==3.8.0; python_version >= "3.9" and extra == "lint"
33
34
  Provides-Extra: build
34
- Requires-Dist: build==1.0.3; extra == "build"
35
- Requires-Dist: twine==4.0.2; extra == "build"
35
+ Requires-Dist: build==1.2.2; extra == "build"
36
+ Requires-Dist: twine==5.1.1; extra == "build"
36
37
  Provides-Extra: docs
37
38
  Requires-Dist: sphinx~=7.1; extra == "docs"
38
39
  Requires-Dist: sphinx_rtd_theme==2.0.0; extra == "docs"
@@ -7,6 +7,7 @@ MANIFEST.in
7
7
  Makefile
8
8
  README.rst
9
9
  pyproject.toml
10
+ renovate.json
10
11
  tox.ini
11
12
  docs/Makefile
12
13
  docs/authors.rst
@@ -23,7 +24,7 @@ src/pylunar/helpers.py
23
24
  src/pylunar/lunar_feature.py
24
25
  src/pylunar/lunar_feature_container.py
25
26
  src/pylunar/moon_info.py
26
- src/pylunar/types.py
27
+ src/pylunar/pkg_types.py
27
28
  src/pylunar.egg-info/PKG-INFO
28
29
  src/pylunar.egg-info/SOURCES.txt
29
30
  src/pylunar.egg-info/dependency_links.txt
@@ -0,0 +1,30 @@
1
+ ephem==4.1.5
2
+ pytz==2024.2
3
+
4
+ [:python_version < "3.10"]
5
+ importlib-resources==6.4.5
6
+ typing-extensions==4.12.2
7
+
8
+ [build]
9
+ build==1.2.2
10
+ twine==5.1.1
11
+
12
+ [dev]
13
+ pylunar[build,docs,lint,test]
14
+ tox==4.20.0
15
+
16
+ [docs]
17
+ sphinx~=7.1
18
+ sphinx_rtd_theme==2.0.0
19
+
20
+ [lint]
21
+
22
+ [lint:python_version < "3.9"]
23
+ pre-commit==3.5.0
24
+
25
+ [lint:python_version >= "3.9"]
26
+ pre-commit==3.8.0
27
+
28
+ [test]
29
+ coverage[toml]==7.6.1
30
+ pytest==8.3.3
@@ -1,25 +0,0 @@
1
- ephem==4.1.5
2
- pytz==2024.1
3
-
4
- [:python_version < "3.10"]
5
- importlib-resources==6.1.1
6
- typing-extensions==4.9.0
7
-
8
- [build]
9
- build==1.0.3
10
- twine==4.0.2
11
-
12
- [dev]
13
- pylunar[build,docs,lint,test]
14
- tox==4.11.4
15
-
16
- [docs]
17
- sphinx~=7.1
18
- sphinx_rtd_theme==2.0.0
19
-
20
- [lint]
21
- pre-commit~=3.5.0
22
-
23
- [test]
24
- coverage[toml]==7.4.0
25
- pytest==7.4.4
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