Skip to content

Commit ba322d0

Browse files
committed
ci: skip wheel builds for free-threaded Python 3.13
1 parent 335123c commit ba322d0

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

build-wheels.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ git config --global --add safe.directory "$GITHUB_WORKSPACE"
5959
# Compile wheels
6060
for PYBIN in /opt/python/cp{39,310,311,312,313,314}*/bin; do
6161
[ -d "$PYBIN" ] || continue
62+
if [[ "$PYBIN" =~ 313t ]] ; then
63+
echo "Skipping 313t variant, as it is incompatible with cffi"
64+
continue
65+
fi
6266
"${PYBIN}/pip" install --upgrade pip setuptools
6367
"${PYBIN}/pip" install -r "$GITHUB_WORKSPACE/requirements.txt"
6468

0 commit comments

Comments
 (0)