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 ae1cccc commit b6f0b49Copy full SHA for b6f0b49
.github/workflows/build_and_deploy.yml
@@ -27,6 +27,12 @@ jobs:
27
- name: Set environment variables
28
run: echo "CIBW_ARCHS=${{ matrix.os-arch.arch }}" >> $GITHUB_ENV
29
30
+ - name: Install Python development headers
31
+ - run: |
32
+ PYTHON_VERSION=$(python3 -c "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')")
33
+ sudo apt-get update
34
+ sudo apt-get install -y python${PYTHON_VERSION}-dev
35
+
36
- name: Build wheels
37
uses: pypa/cibuildwheel@v2.21.3
38
0 commit comments