Skip to content

Commit

Permalink
Numpy supports 3.12 as of version 1.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benvanwerkhoven committed Apr 25, 2024
1 parent d18f079 commit 1a3f356
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 3 deletions.
52 changes: 50 additions & 2 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 @@ -57,7 +57,10 @@ generate-setup-file = false
# ATTENTION: if anything is changed here, run `poetry update`
[tool.poetry.dependencies]
python = ">=3.8,<3.13" # NOTE if we drop 3.8 support, remove "from __future__ import annotations" # NOTE when changing the supported Python versions, also change the test versions in the noxfile
numpy = "^1.22.2" # set to 1.22.2 instead of 1.22.4 to match oldest-supported-numpy required by pycuda
numpy = [
{version = "^1.22.2", python = "<=3.11"}, # set to 1.22.2 instead of 1.22.4 to match oldest-supported-numpy required by pycuda
{version = "^1.26.0", python = "==3.12"} # Python 3.12 requires numpy at least 1.26
]
scipy = [
{version = "^1.10.0", python = "==3.8"}, # held back by Python 3.8 support (dropped from ^1.11)
{version = "^1.11.0", python = ">=3.9"}
Expand Down

0 comments on commit 1a3f356

Please sign in to comment.