Skip to content

Commit 567bd14

Browse files
Merge pull request #10 from gregory-halverson-jpl/main
fixing __version__, Python 3.10~3.13
2 parents 70f0b62 + 33b29e3 commit 567bd14

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.10"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1717

1818
steps:
1919
- name: Checkout repository

solar_apparent_time/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from os.path import join, abspath, dirname
22
from importlib.metadata import version
33

4-
__version__ = version("sun-angles")
4+
__version__ = version("solar-apparent-time")

0 commit comments

Comments
 (0)