From 67debf8df8812cfdae40d6374ffeaae99ae717bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= <inform@tiker.net> Date: Wed, 27 Jan 2021 13:08:33 -0600 Subject: [PATCH] Wheel build: Use py39 for twine and such --- travis/build-wheels.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/travis/build-wheels.sh b/travis/build-wheels.sh index 84b760db..d26d5554 100755 --- a/travis/build-wheels.sh +++ b/travis/build-wheels.sh @@ -81,24 +81,24 @@ done # Bundle license files -/opt/python/cp37-cp37m/bin/pip install delocate -/opt/python/cp37-cp37m/bin/python /io/travis/fix-wheel.py /deps/ocl-icd/COPYING +/opt/python/cp39-cp39/bin/pip install delocate +/opt/python/cp39-cp39/bin/python /io/travis/fix-wheel.py /deps/ocl-icd/COPYING if [[ "${TWINE_USERNAME}" == "" ]]; then echo "TWINE_USERNAME not set. Skipping uploading wheels" exit 0 fi -/opt/python/cp37-cp37m/bin/pip install twine +/opt/python/cp39-cp39/bin/pip install twine for WHEEL in /io/wheelhouse/pyopencl*.whl; do # dev - # /opt/python/cp37-cp37m/bin/twine upload \ + # /opt/python/cp39-cp39/bin/pip upload \ # --skip-existing \ # --repository-url https://test.pypi.org/legacy/ \ # -u "${TWINE_USERNAME}" -p "${TWINE_PASSWORD}" \ # "${WHEEL}" # prod - /opt/python/cp37-cp37m/bin/twine upload \ + /opt/python/cp39-cp39/bin/pip upload \ --skip-existing \ -u "${TWINE_USERNAME}" -p "${TWINE_PASSWORD}" \ "${WHEEL}" -- GitLab