We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00d8d2a commit 9bb152dCopy full SHA for 9bb152d
scripts/cibw_before_build.sh
@@ -7,6 +7,8 @@ done
7
FREE_THREADED_BUILD="$(python -c"import sysconfig; print(bool(sysconfig.get_config_var('Py_GIL_DISABLED')))")"
8
if [[ $FREE_THREADED_BUILD == "True" ]]; then
9
python -m pip install -U pip
10
- python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy cython
11
- python -m pip install ninja meson-python versioneer[toml]
+ # python -m pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple cython
+ # TODO: Remove below and uncomment above once https://github.com/cython/cython/pull/6717 no longer breaks tests
12
+ python -m pip install git+https://github.com/cython/cython.git@3276b588720a053c78488e5de788605950f4b136
13
+ python -m pip install ninja meson-python versioneer[toml] numpy
14
fi
0 commit comments