Skip to content

Commit b6d0188

Browse files
add Python 3.12 to list of versions to test
1 parent d792304 commit b6d0188

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
# set the test parameters
1818
verbose = False
19-
python_versions_to_test = ["3.8", "3.9", "3.10", "3.11"]
19+
python_versions_to_test = ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020
nox.options.stop_on_first_error = True
2121
nox.options.error_on_missing_interpreters = True
2222
nox.options.default_venv_backend = 'virtualenv'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ generate-setup-file = false
5656

5757
# ATTENTION: if anything is changed here, run `poetry update`
5858
[tool.poetry.dependencies]
59-
python = ">=3.8,<3.12" # 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
59+
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
6060
numpy = "^1.22.2" # set to 1.22.2 instead of 1.22.4 to match oldest-supported-numpy required by pycuda
6161
scipy = "^1.10.1" # held back by Python 3.8 support (dropped from ^1.11)
6262
packaging = "*" # required by file_utils

0 commit comments

Comments
 (0)