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 1decaed commit d34973fCopy full SHA for d34973f
.github/workflows/wheels.yml
@@ -83,7 +83,7 @@ jobs:
83
with:
84
python-version: 3.8
85
- name: Build wheels
86
- uses: pypa/cibuildwheel@v2.20.0
+ uses: pypa/cibuildwheel@v2.21.1
87
env:
88
CIBW_SKIP: pp* # The Makefile requires python3-config which is not in pypy
89
CIBW_ARCHS: ${{ matrix.os.archs }}
.github/workflows/wheels/cibw_before_build.sh
@@ -5,6 +5,10 @@ set -x
5
make clean
6
7
# DEBUG: show python3 and python3-config outputs
8
+if [ "$(uname)" != "Linux" ]; then
9
+ # https://github.com/pypa/cibuildwheel/issues/2021
10
+ ln -s $(dirname $(readlink -f $(which python3)))/python3-config $(dirname $(which python3))/python3-config
11
+fi
12
python3 --version
13
python3-config --includes
14
0 commit comments