Skip to content

Commit

Permalink
Add Python 3.12 to CI (#1719)
Browse files Browse the repository at this point in the history
* Update python-package.yml

* bump numpy versions

* bump min python version

* Update release.rst
  • Loading branch information
jhamman committed Mar 25, 2024
1 parent 6fe553d commit f4f0b42
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/python-package.yml
Expand Up @@ -15,13 +15,15 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11']
numpy_version: ['>=1.22.0', '==1.21.*']
python-version: ['3.9', '3.10', '3.11', '3.12']
numpy_version: ['>=1.24.0', '==1.23.*']
exclude:
- python-version: '3.10'
numpy_version: '==1.21.*'
numpy_version: '==1.23.*'
- python-version: '3.11'
numpy_version: '==1.21.*'
numpy_version: '==1.23.*'
- python-version: '3.12'
numpy_version: '==1.23.*'
services:
redis:
image: redis
Expand Down
6 changes: 6 additions & 0 deletions docs/release.rst
Expand Up @@ -53,6 +53,12 @@ Maintenance
* Fix RTD build.
By :user:`Sanket Verma <msankeys963>` :issue:`1694`.

* Add CI test environment for Python 3.12
By :user:`Joe Hamman <jhamman>` :issue:`1719`.

* Bump minimum supported NumPy version to 1.23 (per spec 0000)
By :user:`Joe Hamman <jhamman>` :issue:`1719`.

.. _release_2.17.0:

2.17.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -13,7 +13,7 @@ maintainers = [
requires-python = ">=3.9"
dependencies = [
'asciitree',
'numpy>=1.21.1',
'numpy>=1.23',
'fasteners; sys_platform != "emscripten"',
'numcodecs>=0.10.0',
]
Expand Down

0 comments on commit f4f0b42

Please sign in to comment.