Skip to content

Commit 4114a39

Browse files
committed
pyproject.toml: Move settings of CIBW_MANYLINUX_*_IMAGE here
1 parent 1666fb0 commit 4114a39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/buildwheel.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
- name: Build wheels
3535
uses: pypa/[email protected]
3636
env:
37-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
38-
CIBW_MANYLINUX_I686_IMAGE: manylinux2014
3937
# override setting in pyproject.toml to use msys2 instead of msys64 bash
4038
CIBW_BEFORE_ALL_WINDOWS: msys2 -c bin/cibw_before_all_windows.sh
4139
CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel && msys2 -c bin/cibw_before_build_windows.sh

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ content-type = "text/markdown"
2424
[tool.cibuildwheel]
2525
build = "cp39-* cp310-* cp311-* cp312-*"
2626
skip = "*-win32 *-manylinux_i686 *-musllinux_*"
27+
manylinux-x86_64-image = "manylinux2014"
28+
manylinux-i686-image = "manylinux2014"
2729
test-command = "python -c \"import flint; print(str(flint.fmpz(2)))\""
2830

2931
[tool.cibuildwheel.environment]

0 commit comments

Comments
 (0)