Skip to content

Commit f42b78c

Browse files
committed
build-wheels.sh: Python 3.11 support
1 parent 1f34b06 commit f42b78c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ fi
5757
git config --global --add safe.directory "$GITHUB_WORKSPACE"
5858

5959
# Compile wheels
60-
for PYBIN in /opt/python/cp{37,38,39,310}*/bin; do
60+
for PYBIN in /opt/python/cp{37,38,39,310,311}*/bin; do
6161
[ -d "$PYBIN" ] || continue
6262
"${PYBIN}/pip" install --upgrade pip setuptools
6363
"${PYBIN}/pip" install -r "$GITHUB_WORKSPACE/requirements.txt"
@@ -76,7 +76,7 @@ rm wheelhouse/*-linux_*.whl
7676

7777
# Install packages and test
7878
cd /
79-
for PYBIN in /opt/python/cp{37,38,39,310}*/bin/; do
79+
for PYBIN in /opt/python/cp{37,38,39,310,311}*/bin/; do
8080
[ -d "$PYBIN" ] || continue
8181

8282
"${PYBIN}/pip" install pytest pytest-asyncio

0 commit comments

Comments
 (0)