|
48 | 48 | CIBW_REPAIR_WHEEL_COMMAND: | |
49 | 49 | auditwheel repair -w {dest_dir} --plat manylinux_2_28_x86_64 {wheel} |
50 | 50 | CIBW_TEST_COMMAND: | |
| 51 | + pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy |
51 | 52 | pip install {package}[test] |
52 | 53 | if python -c "import sys; exit(0 if hasattr(sys, '_is_gil_enabled') and not sys._is_gil_enabled() else 1)"; then |
53 | 54 | pytest --parallel-threads=10 --iterations=10 {project}/tests |
@@ -110,6 +111,7 @@ jobs: |
110 | 111 | CIBW_REPAIR_WHEEL_COMMAND: > |
111 | 112 | delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel} |
112 | 113 | CIBW_TEST_COMMAND: | |
| 114 | + pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy |
113 | 115 | pip install {package}[test] |
114 | 116 | if python -c "import sys; exit(0 if hasattr(sys, '_is_gil_enabled') and not sys._is_gil_enabled() else 1)"; then |
115 | 117 | pytest --parallel-threads=10 --iterations=10 {project}/tests |
@@ -166,15 +168,15 @@ jobs: |
166 | 168 | CIBW_BUILD_VERBOSITY: "3" |
167 | 169 | DISTUTILS_USE_SDK: "1" |
168 | 170 | MSSdk: "1" |
169 | | - CIBW_BEFORE_BUILD: | |
170 | | - pip install meson meson-python ninja wheel |
| 171 | + CIBW_BEFORE_BUILD: >- |
| 172 | + pip install meson meson-python ninja wheel && |
171 | 173 | pip install --pre --upgrade --timeout=60 --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy |
172 | 174 | CIBW_BUILD_FRONTEND: "pip; args: --no-build-isolation" |
173 | 175 | CIBW_ENVIRONMENT: > |
174 | 176 | CFLAGS="/DDISABLE_QUADBLAS $CFLAGS" |
175 | 177 | CXXFLAGS="/DDISABLE_QUADBLAS $CXXFLAGS" |
176 | 178 | CIBW_REPAIR_WHEEL_COMMAND: 'delvewheel repair -w {dest_dir} {wheel} --add-path C:\sleef\bin' |
177 | | - CIBW_TEST_COMMAND_WINDOWS: pip install {package}[test] && pytest -s {project}/tests |
| 179 | + CIBW_TEST_COMMAND_WINDOWS: pip install --pre --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy && pip install {package}[test] && pytest -s {project}/tests |
178 | 180 | CIBW_TEST_EXTRAS: test |
179 | 181 | shell: pwsh |
180 | 182 | run: | |
|
0 commit comments