We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75a6e59 commit f302640Copy full SHA for f302640
.github/workflows/wheels.yml
@@ -42,6 +42,7 @@ jobs:
42
CIBW_PLATFORM: 'windows'
43
CIBW_ARCHS: 'ARM64'
44
CIBW_BEFORE_BUILD_WINDOWS: |
45
+ python -m pip install delvewheel
46
echo "Searching for cl.exe..."
47
where cl.exe || echo "cl.exe not found in PATH"
48
echo "Searching for link.exe..."
scripts/cibw_before_build_windows.sh
@@ -4,7 +4,6 @@ for file in $PACKAGE_DIR/LICENSES/*; do
4
cat $file >> $PACKAGE_DIR/LICENSE
5
done
6
7
-python -m pip install delvewheel
8
# TODO: Delete when there's a PyPI Cython release that supports free-threaded Python 3.13
9
FREE_THREADED_BUILD="$(python -c"import sysconfig; print(bool(sysconfig.get_config_var('Py_GIL_DISABLED')))")"
10
if [[ $FREE_THREADED_BUILD == "True" ]]; then
0 commit comments