Skip to content

Commit

Permalink
fix(python-version): compatibility with NumPy
Browse files Browse the repository at this point in the history
  • Loading branch information
Deuchnord authored and Jérôme Deuchnord committed Aug 15, 2023
1 parent 69cdf15 commit 8373dcd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- macos-11.0
- windows-latest
python_version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
Expand Down
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ classifiers = [
]

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

Expand Down

0 comments on commit 8373dcd

Please sign in to comment.