File tree 3 files changed +11
-4
lines changed
doc/api/next_api_changes/development
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -91,18 +91,18 @@ jobs:
91
91
runs-on : ${{ matrix.os }}
92
92
env :
93
93
CIBW_BEFORE_BUILD : >-
94
- pip install certifi oldest-supported- numpy &&
94
+ pip install certifi numpy>=1.25 &&
95
95
rm -rf {package}/build
96
96
CIBW_BEFORE_BUILD_WINDOWS : >-
97
- pip install certifi delvewheel oldest-supported- numpy &&
97
+ pip install certifi delvewheel numpy>=1.25 &&
98
98
rm -rf {package}/build
99
99
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS : >-
100
100
delvewheel repair -w {dest_dir} {wheel}
101
101
CIBW_AFTER_BUILD : >-
102
102
twine check {wheel} &&
103
103
python {package}/ci/check_wheel_licenses.py {wheel}
104
104
CIBW_MANYLINUX_X86_64_IMAGE : manylinux2014
105
- CIBW_SKIP : " *-musllinux* "
105
+ CIBW_SKIP : " *-musllinux_aarch64 "
106
106
CIBW_TEST_COMMAND : >-
107
107
python {package}/ci/check_version_number.py
108
108
# Apple Silicon machines are not available for testing, so silence the
Original file line number Diff line number Diff line change
1
+ New wheel architectures
2
+ ~~~~~~~~~~~~~~~~~~~~~~~
3
+
4
+
5
+ Wheels have been added for:
6
+
7
+ - musl based systems
Original file line number Diff line number Diff line change 2
2
build-backend = " setuptools.build_meta"
3
3
requires = [
4
4
" certifi>=2020.06.20" ,
5
- " oldest-supported- numpy" ,
5
+ " numpy>=1.25 " ,
6
6
" pybind11>=2.6" ,
7
7
" setuptools>=42" ,
8
8
" setuptools_scm>=7" ,
You can’t perform that action at this time.
0 commit comments