Skip to content

Commit 920cc46

Browse files
authored
Merge pull request #5023 from radarhere/python39
2 parents 9d4543e + c309c64 commit 920cc46

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.ci/after_success.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ if [[ $TRAVIS ]]; then
1212
codecov --flags TravisCI
1313
fi
1414

15-
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ]; then
15+
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then
1616
# Coverage and quality reports on just the latest diff.
1717
depends/diffcover-install.sh
1818
depends/diffcover-run.sh

.ci/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ if [[ $TRAVIS_PYTHON_VERSION == 3.* ]]; then
4747
fi
4848
fi
4949

50-
# docs only on Python 3.8
51-
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ]; then python3 -m pip install -r requirements.txt ; fi
50+
# docs only on Python 3.9
51+
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ]; then python3 -m pip install -r requirements.txt ; fi
5252

5353
# webp
5454
pushd depends && ./install_webp.sh && popd

.ci/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set -e
55
python -bb -m pytest -v -x -W always --cov PIL --cov Tests --cov-report term Tests
66

77
# Docs
8-
if [ "$TRAVIS_PYTHON_VERSION" == "3.8" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
8+
if [ "$TRAVIS_PYTHON_VERSION" == "3.9" ] && [ "$TRAVIS_CPU_ARCH" == "amd64" ]; then
99
make doccheck
1010
fi

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
path: Tests/errors
9595

9696
- name: Docs
97-
if: startsWith(matrix.os, 'ubuntu') && matrix.python-version == 3.8
97+
if: startsWith(matrix.os, 'ubuntu') && matrix.python-version == 3.9
9898
run: |
9999
python3 -m pip install sphinx-removed-in sphinx-rtd-theme
100100
make doccheck

0 commit comments

Comments
 (0)