Skip to content

Commit

Permalink
Pin numpy to < 2 for older Python
Browse files Browse the repository at this point in the history
  • Loading branch information
Athanaseus committed Dec 13, 2024
1 parent 56ffc96 commit 19dbbec
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 @@ -26,7 +26,10 @@ breizorro = "breizorro.main:driver"
[tool.poetry.dependencies]
python = ">=3.8, <3.13"
astropy = "*"
numpy = "*"
numpy = [
{ version = ">=2.0.0", python = ">=3.12"},
{ version = "<2.0.0", python = ">=3.8, <3.12"}
]
omegaconf = "*"
regions = "*"
scipy = "*"
Expand Down

0 comments on commit 19dbbec

Please sign in to comment.