File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ setup = ['--vsenv'] # For Windows
148
148
149
149
[tool .cibuildwheel ]
150
150
skip = " cp36-* cp37-* cp38-* cp39-* pp* *_i686 *_ppc64le *_s390x"
151
- build-verbosity = " 3 "
151
+ build-verbosity = 3
152
152
environment = {LDFLAGS =" -Wl,--strip-all" }
153
153
test-requires = " hypothesis>=6.84.0 pytest>=7.3.2 pytest-xdist>=3.4.0"
154
154
test-command = """
@@ -160,6 +160,7 @@ free-threaded-support = true
160
160
before-build = " PACKAGE_DIR={package} bash {package}/scripts/cibw_before_build.sh"
161
161
162
162
[tool .cibuildwheel .windows ]
163
+ environment = {}
163
164
before-build = " pip install delvewheel && bash {package}/scripts/cibw_before_build_windows.sh"
164
165
before-test = " bash {package}/scripts/cibw_before_test_windows.sh"
165
166
test-command = """
Original file line number Diff line number Diff line change @@ -5,10 +5,11 @@ for file in $PACKAGE_DIR/LICENSES/*; do
5
5
done
6
6
7
7
# TODO: Delete when there's a PyPI Cython release that supports free-threaded Python 3.13
8
- # and a NumPy Windows wheel for the free-threaded build on PyPI.
9
8
FREE_THREADED_BUILD=" $( python -c" import sysconfig; print(bool(sysconfig.get_config_var('Py_GIL_DISABLED')))" ) "
10
9
if [[ $FREE_THREADED_BUILD == " True" ]]; then
11
10
python -m pip install -U pip
12
- python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy cython
13
- python -m pip install ninja meson-python versioneer[toml]
11
+ # python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython
12
+ # TODO: Remove below and uncomment above once https://github.com/cython/cython/pull/6717 no longer breaks tests
13
+ python -m pip install git+https://github.com/cython/cython.git@3276b588720a053c78488e5de788605950f4b136
14
+ python -m pip install ninja meson-python versioneer[toml] numpy
14
15
fi
You can’t perform that action at this time.
0 commit comments