Skip to content

Commit b03cd63

Browse files
Add initial support py3.9
1 parent 809e66b commit b03cd63

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["pypy3", "3.6", "3.7", "3.8"]
11+
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9"]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
include:
1414
# Include new variables for Codecov
1515
- { codecov-flag: GHA_Ubuntu, os: ubuntu-latest }
1616
- { codecov-flag: GHA_macOS, os: macos-latest }
1717
- { codecov-flag: GHA_Windows, os: windows-latest }
1818
# Dev versions
19-
- { python-version: 3.9-dev, os: ubuntu-18.04 }
2019
- { python-version: 3.10-dev, os: ubuntu-18.04 }
2120

2221
steps:

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
- 3.6
77
- 3.7
88
- 3.8
9-
- 3.9-dev
9+
- 3.9
1010
- 3.10-dev
1111

1212
matrix:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def local_scheme(version):
4747
"Programming Language :: Python :: 3.6",
4848
"Programming Language :: Python :: 3.7",
4949
"Programming Language :: Python :: 3.8",
50+
"Programming Language :: Python :: 3.9",
5051
"Programming Language :: Python :: 3 :: Only",
5152
"Programming Language :: Python :: Implementation :: CPython",
5253
"Programming Language :: Python :: Implementation :: PyPy",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36, 37, 38, py3}
3+
py{36, 37, 38, 39, py3}
44

55
[testenv]
66
extras =

0 commit comments

Comments
 (0)