Skip to content

Commit

Permalink
Merge branch 'main' into fs_exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
MSanKeys963 authored Mar 27, 2024
2 parents ef00054 + 8d0d910 commit 1364eaf
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
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: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ default_language_version:
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: 'v0.2.2'
rev: 'v0.3.4'
hooks:
- id: ruff
- repo: https://github.com/psf/black
rev: 24.2.0
rev: 24.3.0
hooks:
- id: black
- repo: https://github.com/codespell-project/codespell
Expand All @@ -24,7 +24,7 @@ repos:
hooks:
- id: check-yaml
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.9.0
hooks:
- id: mypy
files: zarr
Expand Down
6 changes: 6 additions & 0 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,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
2 changes: 1 addition & 1 deletion requirements_dev_optional.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ types-setuptools
pymongo==4.6.2
# optional test requirements
coverage
pytest-cov==4.1.0
pytest-cov==5.0.0
pytest-doctestplus==1.2.1
pytest-timeout==2.3.1
h5py==3.10.0
Expand Down

0 comments on commit 1364eaf

Please sign in to comment.