We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be9bb8d commit 5283a97Copy full SHA for 5283a97
1 file changed
.github/workflows/build-wheels.yml
@@ -46,14 +46,15 @@ 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*"
50
+ # CIBW_SKIP: "*-win32 *i686 pp3* *-musllinux_*"
51
CIBW_BUILD_FRONTEND: build
52
CIBW_BUILD_VERBOSITY: 1
53
CIBW_TEST_REQUIRES: pytest scipy
54
CIBW_TEST_COMMAND: |
55
pytest {project}/tests
56
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64
- # CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2
57
+ CIBW_MUSLLINUX_X86_64_IMAGE: musllinux_1_2
58
CIBW_BEFORE_ALL_LINUX: |
59
bash {project}/cibw-scripts/before_all_linux.sh {project}
60
CIBW_BEFORE_ALL_WINDOWS: |
0 commit comments