From 3552b58f00245fd351f0a8e932daf0d37150e22f Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 6 Oct 2020 20:06:24 +0300 Subject: [PATCH 1/2] Add Python 3.9 to deploy-wheels --- .github/workflows/deploy-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-wheels.yml b/.github/workflows/deploy-wheels.yml index 56f45ca..8725441 100644 --- a/.github/workflows/deploy-wheels.yml +++ b/.github/workflows/deploy-wheels.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macOS-latest] - python-version: [3.6, 3.7, 3.8] + python-version: [3.6, 3.7, 3.8, 3.9] include: - os: ubuntu-latest python-version: 3.8 From 71ef2a85e64a335045b0c8154c2be84ca9c48747 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 6 Oct 2020 20:42:35 +0300 Subject: [PATCH 2/2] Drop 3.5, add 3.9 --- scripts/build-manylinux-wheels.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-manylinux-wheels.sh b/scripts/build-manylinux-wheels.sh index 992a418..4b2aaf3 100755 --- a/scripts/build-manylinux-wheels.sh +++ b/scripts/build-manylinux-wheels.sh @@ -25,7 +25,7 @@ mkdir -p /io/temp-wheels # Clean out any old existing wheels. find /io/temp-wheels/ -type f -delete -for PYBIN in /opt/python/cp3[5678]*/bin; do +for PYBIN in /opt/python/cp3[6789]*/bin; do "${PYBIN}/pip" install -q -U setuptools wheel pytest --cache-dir /io/pip-cache (cd /io/ && "${PYBIN}/python" -m pip install .) (cd /io/ && "${PYBIN}/python" -m pytest)