From ee94f4e394efda2d711d62ef054a026239e6cc8b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Fri, 30 Apr 2021 11:35:27 +0300 Subject: [PATCH] Revert "Fixed Python 3.10 at alpha.7" --- .ci/install.sh | 2 +- .github/workflows/macos-install.sh | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/install.sh b/.ci/install.sh index 298eb9edce5..4917b3a7c67 100755 --- a/.ci/install.sh +++ b/.ci/install.sh @@ -31,7 +31,7 @@ python3 -m pip install -U pytest-timeout python3 -m pip install pyroma python3 -m pip install test-image-results # TODO Remove condition when numpy supports 3.10 -if ! [ "$GHA_PYTHON_VERSION" == "3.10.0-alpha.7" ]; then python3 -m pip install numpy ; fi +if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi # TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+: if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi diff --git a/.github/workflows/macos-install.sh b/.github/workflows/macos-install.sh index fafe329e0df..f4582444555 100755 --- a/.github/workflows/macos-install.sh +++ b/.github/workflows/macos-install.sh @@ -15,7 +15,7 @@ python3 -m pip install test-image-results echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg # TODO Remove condition when numpy supports 3.10 -if ! [ "$GHA_PYTHON_VERSION" == "3.10.0-alpha.7" ]; then python3 -m pip install numpy ; fi +if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi # TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+: if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f35ff83fa17..e52fefc69bd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,7 +15,7 @@ jobs: python-version: [ "pypy-3.7", "pypy-3.6", - "3.10.0-alpha.7", + "3.10-dev", "3.9", "3.8", "3.7",