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 a2ae87d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion pyproject.toml
Expand Up @@ -19,8 +19,12 @@ classifiers = [
]

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

Expand Down

0 comments on commit a2ae87d

Please sign in to comment.