Skip to content

Commit

Permalink
Merge pull request #5456 from python-pillow/revert-5447-python310
Browse files Browse the repository at this point in the history
Revert "Fixed Python 3.10 at alpha.7": use 3.10-dev
  • Loading branch information
radarhere committed Apr 30, 2021
2 parents 05f9e23 + ee94f4e commit 2563727
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ci/install.sh
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-install.sh
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -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",
Expand Down

0 comments on commit 2563727

Please sign in to comment.