Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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