We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 335123c commit ba322d0Copy full SHA for ba322d0
1 file changed
build-wheels.sh
@@ -59,6 +59,10 @@ git config --global --add safe.directory "$GITHUB_WORKSPACE"
59
# Compile wheels
60
for PYBIN in /opt/python/cp{39,310,311,312,313,314}*/bin; do
61
[ -d "$PYBIN" ] || continue
62
+ if [[ "$PYBIN" =~ 313t ]] ; then
63
+ echo "Skipping 313t variant, as it is incompatible with cffi"
64
+ continue
65
+ fi
66
"${PYBIN}/pip" install --upgrade pip setuptools
67
"${PYBIN}/pip" install -r "$GITHUB_WORKSPACE/requirements.txt"
68
0 commit comments