Skip to content

Commit 10f6f1f

Browse files
committed
pyproject.toml: Move settings of CIBW_SKIP here
1 parent 8f14c05 commit 10f6f1f

4 files changed

Lines changed: 1 addition & 4 deletions

File tree

.github/workflows/buildwheel.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
- name: Build wheels
3535
uses: pypa/cibuildwheel@v2.16.5
3636
env:
37-
CIBW_SKIP: "*-win32 *-manylinux_i686 *-musllinux_*"
3837
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
3938
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
4039
CIBW_BEFORE_ALL_MACOS: bin/cibw_before_all_macosx_x86_64.sh

bin/cibw.bat

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ del /q wheelhouse\*
2424
rem override setting in pyproject.toml
2525
set CIBW_BUILD=cp39-* cp310-* cp311-*
2626

27-
set CIBW_SKIP=*-win32 *-manylinux_i686 *-musllinux_*
2827
set CIBW_BEFORE_ALL_WINDOWS=C:\msys64\usr\bin\bash bin/cibw_before_all_windows.sh
2928
set CIBW_BEFORE_BUILD_WINDOWS=C:\msys64\usr\bin\bash bin/cibw_before_build_windows.sh
3029

bin/cibw.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
rm -f wheelhouse/*
1010

11-
export CIBW_SKIP='*-win32 *-manylinux_i686 *-musllinux_*'
12-
1311
# export CIBW_ARCHS_MACOS="x86_64"
1412
export CIBW_ARCHS_MACOS="arm64"
1513

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ content-type = "text/markdown"
2323

2424
[tool.cibuildwheel]
2525
build = "cp39-* cp310-* cp311-* cp312-*"
26+
skip = "*-win32 *-manylinux_i686 *-musllinux_*"
2627
test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""
2728

2829
[tool.cibuildwheel.environment]

0 commit comments

Comments
 (0)