Skip to content

Commit 8c7a582

Browse files
committed
CI: all supported versions of Python are supported by numpy 1.25
As of numpy 1.25.0 we no longer need to pin to the oldest supported versions to make wheels work reliably.
1 parent 54f1612 commit 8c7a582

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ jobs:
9191
runs-on: ${{ matrix.os }}
9292
env:
9393
CIBW_BEFORE_BUILD: >-
94-
pip install certifi oldest-supported-numpy &&
94+
pip install certifi numpy>=1.25 &&
9595
rm -rf {package}/build
9696
CIBW_BEFORE_BUILD_WINDOWS: >-
97-
pip install certifi delvewheel oldest-supported-numpy &&
97+
pip install certifi delvewheel numpy>=1.25 &&
9898
rm -rf {package}/build
9999
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: >-
100100
delvewheel repair -w {dest_dir} {wheel}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
build-backend = "setuptools.build_meta"
33
requires = [
44
"certifi>=2020.06.20",
5-
"oldest-supported-numpy",
5+
"numpy>=1.25",
66
"pybind11>=2.6",
77
"setuptools>=42",
88
"setuptools_scm>=7",

0 commit comments

Comments
 (0)