Skip to content

Commit

Permalink
fix(dependencies): force using Numpy 2.0 (#73)
Browse files Browse the repository at this point in the history
* fix(dependencies): force using Numpy 2.0

* ci: use stable branch for black

* fix: use last version of Black

* ci: use latest version of macOS instead of 11.0
  • Loading branch information
Deuchnord committed Aug 3, 2024
1 parent 7aff41b commit 9332a38
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/prchecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: psf/black@20.8b1
- uses: psf/black@stable
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os:
- ubuntu-latest
- macos-11.0
- macos-latest
- windows-latest
python_version:
- '3.8'
Expand All @@ -31,7 +31,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}
architecture: x64

- name: Prepare environment
run: |
Expand Down
6 changes: 3 additions & 3 deletions kosmorrolib/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def f(time: Time):
EventType.MAXIMAL_ELONGATION,
[planet],
translate_to_timezone(time.utc_datetime(), timezone),
details={"deg": elongation},
details={"deg": float(elongation)},
)
)

Expand Down Expand Up @@ -299,7 +299,7 @@ def f(start_time: Time, end_time: Time, timezone: int) -> [Event]:
EventType.APOGEE,
[to_aster],
translate_to_timezone(time.utc_datetime(), timezone),
details={"distance_km": distances[i]},
details={"distance_km": float(distances[i])},
)
)

Expand Down Expand Up @@ -338,7 +338,7 @@ def f(start_time: Time, end_time: Time, timezone: int) -> [Event]:
EventType.PERIGEE,
[aster],
translate_to_timezone(time.utc_datetime(), timezone),
details={"distance_km": distances[i]},
details={"distance_km": float(distances[i])},
)
)

Expand Down
20 changes: 11 additions & 9 deletions kosmorrolib/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,15 +283,17 @@ def __repr__(self):
def serialize(self) -> dict:
return {
"object": self.object.serialize(),
"rise_time": self.rise_time.isoformat()
if self.rise_time is not None
else None,
"culmination_time": self.culmination_time.isoformat()
if self.culmination_time is not None
else None,
"set_time": self.set_time.isoformat()
if self.set_time is not None
else None,
"rise_time": (
self.rise_time.isoformat() if self.rise_time is not None else None
),
"culmination_time": (
self.culmination_time.isoformat()
if self.culmination_time is not None
else None
),
"set_time": (
self.set_time.isoformat() if self.set_time is not None else None
),
}


Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.8"
skyfield = "^1.21"
skyfield = "^1.49"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "^1.25", python = ">=3.9,<3.13" },
{ version = "^2.0", python = ">=3.9,<3.13" },
]
skyfield-data = ">=3,<6"
skyfield-data = "*"
python-dateutil = "^2.8"

[tool.poetry.group.dev.dependencies]
black = "^23.1"
black = ">23.1,<25.0"
parameterized = "^0.9.0"
coverage = "^6.1.2"
coveralls = "^3.3.1"
Expand Down

0 comments on commit 9332a38

Please sign in to comment.