Skip to content

Commit 8db280c

Browse files
committed
Fix the build_wheels script
1 parent 4ba5524 commit 8db280c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build-wheels.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@ set -e -x
33

44
cd $(dirname $0)
55

6+
export PATH=/opt/python/cp38-cp38/bin/:$PATH
7+
68
curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py
79
/opt/python/cp38-cp38/bin/python get-poetry.py --preview -y
810
rm get-poetry.py
911

10-
for PYBIN in /opt/python/*/bin; do
12+
for PYBIN in /opt/python/cp3*/bin; do
1113
if [ "$PYBIN" == "/opt/python/cp34-cp34m/bin" ]; then
1214
continue
1315
fi

0 commit comments

Comments
 (0)