Skip to content

Commit 769a18c

Browse files
committed
Try numpy below 2.0
1 parent d8ba07e commit 769a18c

File tree

2 files changed

+40
-49
lines changed

2 files changed

+40
-49
lines changed

poetry.lock

Lines changed: 38 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ python = "^3.9" # Project supports Python 3.9 and newer
1515

1616
# Numpy versioning
1717
numpy = [
18-
{ version = ">=1.21.0,<2.1.0", python = "~3.9" }, # For Python 3.9.x
18+
{ version = ">=1.21.0,<2.0", python = "~3.9" }, # For Python 3.9.x
1919
{ version = ">=1.21.0", python = ">=3.10" } # For Python 3.10 and newer (latest compatible)
2020
]
2121

2222
# Pandas versioning
2323
pandas = [
2424
{ version = ">=1.3.0,<3.0.0", python = "~3.9" }, # For Python 3.9.x
25-
{ version = ">=1.3.0", python = ">=3.10" } # For Python 3.10 and newer (latest compatible)
25+
{ version = ">=2.1.0", python = ">=3.10" } # For Python 3.10 and newer (latest compatible)
2626
]
2727
# tomli is a TOML parser, needed for Python < 3.11 as tomllib is not available
2828
tomli = { version = ">=1.1.0", python = "<3.11" }

0 commit comments

Comments
 (0)