Skip to content

Commit

Permalink
require newer pandas for Python 3.12 to avoid limitation of setuptool…
Browse files Browse the repository at this point in the history
…s in pandas build, with setuptools removed in Python 3.12
  • Loading branch information
vreuter committed Mar 15, 2024
1 parent 64d8fe4 commit 536d0ad
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 32 deletions.
70 changes: 39 additions & 31 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ classifiers = [
[tool.poetry.dependencies]
# These are the main runtime dependencies.
python = "^3.10.0"
numpy = ">= 1.24.2, < 1.25"
numpy = [
{version = "^1.24.2", python = "<3.12"},
{version = "^1.25", python = ">=3.12"}
]
pandas = "^1.5.3"
scikit-image = "^0.20.0"
scipy = "^1.10.1"
Expand Down

0 comments on commit 536d0ad

Please sign in to comment.