File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,10 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
python-version : ['3.10', '3.11', '3.12']
19
- numpy_version : ['>=1.24.0 ', '==1.23 .*']
19
+ numpy_version : ['>=2.1 ', '==1.24 .*']
20
20
exclude :
21
- - python-version : ' 3.11'
22
- numpy_version : ' ==1.23.*'
23
21
- python-version : ' 3.12'
24
- numpy_version : ' ==1.23 .*'
22
+ numpy_version : ' ==1.24 .*'
25
23
services :
26
24
redis :
27
25
image : redis
61
59
conda activate zarr-env
62
60
python -m pip install --upgrade pip
63
61
python -m pip install -U pip setuptools wheel line_profiler
64
- python -m pip install -rrequirements_dev_minimal .txt numpy${{matrix.numpy_version}} -rrequirements_dev_optional .txt pymongo redis
62
+ python -m pip install -r requirements_dev_minimal .txt numpy${{matrix.numpy_version}} -r requirements_dev_optional .txt pymongo redis
65
63
python -m pip install -e .
66
64
python -m pip freeze
67
65
- name : Tests
Original file line number Diff line number Diff line change @@ -39,9 +39,12 @@ Maintenance
39
39
* Fix a regression when using orthogonal indexing with a scalar.
40
40
By :user: `Deepak Cherian <dcherian> ` :issue: `1931 `
41
41
42
- * Added compatibility with numpy 2.1.
42
+ * Added compatibility with NumPy 2.1.
43
43
By :user: `David Stansby <dstansby> `
44
44
45
+ * Bump minimum NumPy version to 1.24.
46
+ :user: `Joe Hamman <jhamman> ` (:issue: `2127 `).
47
+
45
48
Deprecations
46
49
~~~~~~~~~~~~
47
50
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ maintainers = [
13
13
requires-python = " >=3.10"
14
14
dependencies = [
15
15
' asciitree' ,
16
- ' numpy>=1.23 ' ,
16
+ ' numpy>=1.24 ' ,
17
17
' fasteners; sys_platform != "emscripten"' ,
18
18
' numcodecs>=0.10.0' ,
19
19
]
You can’t perform that action at this time.
0 commit comments