Skip to content

Travis CI: Upgrade to Python 3.8 #7251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
cache: pip
dist: xenial
python: 3.7
python: 3.8
addons:
apt:
packages:
Expand Down Expand Up @@ -30,14 +29,18 @@ jobs:
# PyPy
- stage: secondary
env: GROUP=1
python: pypy3.5-6.0
python: pypy3
- env: GROUP=2
python: pypy3.5-6.0
python: pypy3
- env: GROUP=1
python: pypy2.7-6.0
python: pypy
- env: GROUP=2
python: pypy2.7-6.0
python: pypy
# Other Supported CPython
- env: GROUP=1
python: 3.7
- env: GROUP=2
python: 3.7
- env: GROUP=1
python: 3.6
- env: GROUP=2
Expand All @@ -48,14 +51,14 @@ jobs:
python: 3.5

- env: GROUP=1
python: 3.8-dev
python: 3.8
- env: GROUP=2
python: 3.8-dev
python: 3.8

fast_finish: true
# It's okay to fail on the in-development CPython version.
allow_failures:
- python: 3.8-dev
- python: 3.9

before_install: tools/travis/setup.sh
install: travis_retry tools/travis/install.sh
Expand Down