Skip to content

Commit 004d8ff

Browse files
henryiiilgray
andauthored
ci: update to cibuildwheel 3.0 (#345)
* ci: update to cibuildwheel 3.0 * Update pyproject.toml * pypa/[email protected] also for ci wheel checks --------- Co-authored-by: Lindsey Gray <[email protected]>
1 parent 6d87727 commit 004d8ff

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ jobs:
177177
make --jobs
178178
make install
179179
180-
- uses: pypa/cibuildwheel@v2.23
180+
- uses: pypa/cibuildwheel@v3.0
181181
env:
182182
CIBW_ARCHS: ${{ matrix.arch }}
183183
CIBW_BUILD: cp${{ matrix.python }}-*

.github/workflows/wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,10 @@ jobs:
103103
make --jobs
104104
make install
105105
106-
- uses: pypa/cibuildwheel@v2.23
106+
- uses: pypa/cibuildwheel@v3.0
107107
env:
108108
CIBW_ARCHS: ${{ matrix.arch }}
109109
CIBW_BUILD: cp${{ matrix.python }}-*
110-
CIBW_BUILD_VERBOSITY: 1
111110
CIBW_CONFIG_SETTINGS_WINDOWS: >
112111
"cmake.define.GMP_DLL_TO_COPY"="C:\\\\a\\\\fastjet\\\\fastjet\\\\cgal_auxlibs\\\\auxiliary\\\\gmp\\\\bin\\\\gmp-10.dll"
113112
"cmake.define.Boost_INCLUDE_DIR"="C:\a\fastjet\fastjet\boost_1_88_0\boost_1_88_0"

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@ strict_equality = true
9393
ignore_missing_imports = true
9494

9595
[tool.cibuildwheel]
96-
skip = "pp*"
96+
# Skip musllinux builds for the moment
97+
skip = "*-musllinux_*"
9798
test-extras = "test"
9899
test-command = "pytest {project}/tests"
99100
manylinux-x86_64-image = "manylinux2014"
100-
manylinux-i686-image = "manylinux2014"
101101

102102
[tool.cibuildwheel.linux]
103103
before-all = [
@@ -114,8 +114,6 @@ before-all = [
114114
"cmake --install CGAL-5.6/build",
115115
"rm -r CGAL-5.6 CGAL-5.6-library.zip",
116116
]
117-
# Skip musllinux builds for the moment
118-
skip = "*-musllinux_*"
119117

120118
[tool.scikit-build]
121119
minimum-version = "build-system.requires"

0 commit comments

Comments
 (0)