We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2a3267 commit 43add94Copy full SHA for 43add94
1 file changed
.github/workflows/build-wheels.yml
@@ -46,13 +46,14 @@ jobs:
46
uses: pypa/cibuildwheel@v2.22.0
47
env:
48
# All cibuildwheel options are here (nothing "hidden" in pyproject.toml)
49
- CIBW_SKIP: "*-win32 *i686 pp3 *-musllinux_*"
+ CIBW_SKIP: "*-win32 *i686 pp3 *-manylinux_*"
50
CIBW_BUILD_FRONTEND: build
51
CIBW_BUILD_VERBOSITY: 1
52
CIBW_TEST_REQUIRES: pytest
53
CIBW_TEST_COMMAND: |
54
pytest {project}/tests
55
- CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64"
+ CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64
56
+ CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2
57
CIBW_BEFORE_ALL_LINUX: |
58
bash {project}/cibw-scripts/before_all_linux.sh {project}
59
CIBW_BEFORE_ALL_WINDOWS: |
0 commit comments