Skip to content

Commit 8f2a176

Browse files
committed
Python 3.9 is now available on Travis
1 parent 9cc8a7f commit 8f2a176

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "windows-2019"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8"]
20+
python-version: ["3.6","3.7","3.8","3.9"]
2121

2222

2323
steps:

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
name: "Python ${{ matrix.python-version }}"
1313
runs-on: "macos-latest"
1414
env:
15-
USING_COVERAGE: '3.6,3.7,3.8,pypy3'
15+
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy3'
1616

1717
strategy:
1818
fail-fast: False
1919
matrix:
20-
python-version: ["3.6","3.7","3.8","pypy3"]
20+
python-version: ["3.6","3.7","3.8","3.9","pypy3"]
2121

2222

2323
steps:

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python:
88
- '3.6'
99
- '3.7'
1010
- '3.8'
11-
- '3.9-dev'
11+
- '3.9'
1212
- 'pypy3'
1313

1414
arch:
@@ -41,7 +41,7 @@ jobs:
4141
arch: arm64
4242
- python: '3.8'
4343
arch: arm64
44-
- python: '3.9-dev'
44+
- python: '3.9'
4545
arch: arm64
4646
- python: 'pypy3'
4747
arch: arm64

repo_helper.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ python_versions:
1515
- 3.6
1616
- 3.7
1717
- 3.8
18-
- 3.9-dev
18+
- 3.9
1919
- pypy3
2020

2121
classifiers:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
# * pytest
2020

2121
[tox]
22-
envlist = py36, py37, py38, py39-dev, pypy3, mypy, build
22+
envlist = py36, py37, py38, py39, pypy3, mypy, build
2323
skip_missing_interpreters = True
2424
requires = pip>=20.2.1
2525
isolated_build = True
2626

2727
[envlists]
28-
test = py36, py37, py38, py39-dev, pypy3
28+
test = py36, py37, py38, py39, pypy3
2929
qa = mypy, lint
3030
cov = py36, coverage
3131

@@ -34,15 +34,15 @@ python =
3434
3.6: py36, build, mypy
3535
3.7: py37, build
3636
3.8: py38, build
37-
3.9-dev: py39-dev, build
37+
3.9: py39, build
3838
pypy3: pypy3, build
3939

4040
[gh-actions]
4141
python =
4242
3.6: py36, build
4343
3.7: py37, build
4444
3.8: py38, build
45-
3.9-dev: py39-dev, build
45+
3.9: py39, build
4646
pypy3: pypy3, build
4747

4848
[testenv]

0 commit comments

Comments
 (0)