Skip to content

Commit

Permalink
relax numpy versioning (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
likewei92 committed Jun 3, 2024
1 parent 7f58060 commit 7ee3df6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.9"
types-pytz = ">= 2022.1.1"
numpy = { version = ">=1.26.0", python = "<3.13" }
numpy = [
{ version = ">=1.23.5", python = ">=3.9,<3.12" },
{ version = ">=1.26.0", python = ">=3.12,<3.13" }
]

[tool.poetry.group.dev.dependencies]
mypy = "1.10.0"
Expand Down

0 comments on commit 7ee3df6

Please sign in to comment.