Skip to content

Commit 4669345

Browse files
authored
Merge pull request #5447 from radarhere/python310
Fixed Python 3.10 at alpha.7
2 parents 5c9faf0 + 5cae79b commit 4669345

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ python3 -m pip install -U pytest-timeout
3131
python3 -m pip install pyroma
3232
python3 -m pip install test-image-results
3333
# TODO Remove condition when numpy supports 3.10
34-
if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi
34+
if ! [ "$GHA_PYTHON_VERSION" == "3.10.0-alpha.7" ]; then python3 -m pip install numpy ; fi
3535

3636
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
3737
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi

.github/workflows/macos-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ python3 -m pip install test-image-results
1515

1616
echo -e "[openblas]\nlibraries = openblas\nlibrary_dirs = /usr/local/opt/openblas/lib" >> ~/.numpy-site.cfg
1717
# TODO Remove condition when numpy supports 3.10
18-
if ! [ "$GHA_PYTHON_VERSION" == "3.10-dev" ]; then python3 -m pip install numpy ; fi
18+
if ! [ "$GHA_PYTHON_VERSION" == "3.10.0-alpha.7" ]; then python3 -m pip install numpy ; fi
1919

2020
# TODO Remove when 3.8 / 3.9 includes setuptools 49.3.2+:
2121
if [ "$GHA_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -U "setuptools>=49.3.2" ; fi

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
python-version: [
1616
"pypy-3.7",
1717
"pypy-3.6",
18-
"3.10-dev",
18+
"3.10.0-alpha.7",
1919
"3.9",
2020
"3.8",
2121
"3.7",

0 commit comments

Comments
 (0)