Skip to content

Commit

Permalink
Fix python version glob in wheel building
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Jun 8, 2022
1 parent b076325 commit dc9a42b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion continuous_integration/build-manylinux-wheels.sh
Expand Up @@ -25,7 +25,7 @@ mkdir -p /io/temp-wheels
find /io/temp-wheels/ -type f -delete

# Iterate through available pythons.
for PYBIN in /opt/python/cp3{7,8,9,10}/bin; do
for PYBIN in /opt/python/cp3{7,8,9,10}*/bin; do
"${PYBIN}/pip" install -q -U setuptools wheel build --cache-dir /io/pip-cache
# Run the following in root of this repo.
(cd /io/ && "${PYBIN}/pip" install -q .)
Expand Down

0 comments on commit dc9a42b

Please sign in to comment.