Skip to content

Commit 7d2f2dc

Browse files
authored
Travis CI now supports Python 3.9 (getsentry#894)
1 parent e6a2c91 commit 7d2f2dc

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ python:
1616
- "3.6"
1717
- "3.7"
1818
- "3.8"
19-
- "3.9-dev"
19+
- "3.9"
2020

2121
env:
2222
- SENTRY_PYTHON_TEST_POSTGRES_USER=postgres SENTRY_PYTHON_TEST_POSTGRES_NAME=travis_ci_test
@@ -31,21 +31,19 @@ branches:
3131
- /^release\/.+$/
3232

3333
jobs:
34-
allow_failures:
35-
- python: "3.9-dev"
3634
include:
3735
- name: Linting
38-
python: "3.8"
36+
python: "3.9"
3937
install:
4038
- pip install tox
4139
script: tox -e linters
4240

43-
- python: "3.8"
41+
- python: "3.9"
4442
name: Distribution packages
4543
install: []
4644
script: make travis-upload-dist
4745

48-
- python: "3.8"
46+
- python: "3.9"
4947
name: Build documentation
5048
install: []
5149
script: make travis-upload-docs

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ basepython =
277277
# some random Python 3 binary, but then you get guaranteed mismatches with
278278
# CI. Other tools such as mypy and black have options that pin the Python
279279
# version.
280-
linters: python3.8
280+
linters: python3.9
281281
pypy: pypy
282282

283283
commands =

0 commit comments

Comments
 (0)