Skip to content

Commit 3b2a666

Browse files
authored
SPEC 0: Bump minimum supported versions to NumPy 1.26 (#3916)
1 parent 49658d7 commit 3b2a666

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/ci_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
include:
7373
# Python 3.11 + core packages (minimum supported versions) + optional packages (minimum supported versions if any)
7474
- python-version: '3.11'
75-
numpy-version: '1.25'
75+
numpy-version: '1.26'
7676
pandas-version: '=2.1'
7777
xarray-version: '=2023.04'
7878
optional-packages: ' contextily geopandas ipython pyarrow-core rioxarray sphinx-gallery'

.github/workflows/ci_tests_legacy.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python=3.11
6262
gmt=${{ matrix.gmt_version }}
6363
ghostscript<10
64-
numpy<2
64+
numpy=1.26
6565
pandas
6666
xarray
6767
netCDF4

environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ dependencies:
77
# Required dependencies
88
- gmt=6.5.0
99
- ghostscript=10.04.0
10-
- numpy>=1.25
10+
- numpy>=1.26
1111
- pandas>=2.1
1212
- xarray>=2023.04
1313
- netCDF4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ classifiers = [
3535
"Programming Language :: Python :: 3.13",
3636
]
3737
dependencies = [
38-
"numpy>=1.25",
38+
"numpy>=1.26",
3939
"pandas>=2.1",
4040
"xarray>=2023.04",
4141
"netCDF4",

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Required packages
2-
numpy>=1.25
2+
numpy>=1.26
33
pandas>=2.1
44
xarray>=2023.04
55
netCDF4

0 commit comments

Comments
 (0)