Skip to content

Commit 8b7d94e

Browse files
committed
Update cibuildwheel to 3.2.1
New version does not support pypy wheels, so just remove them.
1 parent 49a4e39 commit 8b7d94e

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/lib-build-and-push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ jobs:
9898
echo "CIBW_TEST_COMMAND=true" >> $GITHUB_ENV;
9999
echo "CIBW_TEST_COMMAND_WINDOWS=(exit 0)" >> $GITHUB_ENV;
100100
echo "CIBW_TEST_SKIP=*" >> $GITHUB_ENV;
101-
echo "CIBW_SKIP=cp2* cp36* pp36* cp37* pp37* cp38* pp38* *i686 *musllinux*" >> $GITHUB_ENV;
102-
echo "CIBW_BUILD=cp3* pp3*" >> $GITHUB_ENV;
101+
echo "CIBW_SKIP=cp2* cp36* cp37* cp38* *i686 *musllinux*" >> $GITHUB_ENV;
102+
echo "CIBW_BUILD=cp3*" >> $GITHUB_ENV;
103103
echo "CIBW_BEFORE_TEST=true" >> $GITHUB_ENV;
104104
echo "CIBW_BEFORE_TEST_WINDOWS=(exit 0)" >> $GITHUB_ENV;
105105
@@ -110,7 +110,7 @@ jobs:
110110

111111
- name: Install cibuildwheel
112112
run: |
113-
uv tool install 'cibuildwheel==2.22.0'
113+
uv tool install 'cibuildwheel==3.2.1'
114114
115115
- name: Install OpenSSL for Windows
116116
if: runner.os == 'Windows'

pyproject.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,12 @@ environment = { CASS_DRIVER_BUILD_CONCURRENCY = "2", CASS_DRIVER_BUILD_EXTENSION
132132
skip = [
133133
"cp2*",
134134
"cp36*",
135-
"pp36*",
136135
"cp37*",
137-
"pp37*",
138136
"cp38*",
139-
"pp38*",
140137
"*i686",
141138
"*musllinux*",
142139
]
143-
build = ["cp3*", "pp3*"]
140+
build = ["cp3*"]
144141
test-groups = ["dev"]
145142

146143
manylinux-x86_64-image = "manylinux_2_28"
@@ -170,7 +167,3 @@ test-command = [
170167

171168
# TODO: set CASS_DRIVER_BUILD_EXTENSIONS_ARE_MUST to yes when https://github.com/scylladb/python-driver/issues/429 is fixed
172169
environment = { CASS_DRIVER_BUILD_CONCURRENCY = "2", CASS_DRIVER_BUILD_EXTENSIONS_ARE_MUST = "no" }
173-
174-
[[tool.cibuildwheel.overrides]]
175-
select = "pp*"
176-
test-command = []

0 commit comments

Comments
 (0)