Skip to content

Commit c3152b6

Browse files
authored
Merge pull request #171 from jaimcamp/add-python-39
2 parents 518bae3 + b0fe8eb commit c3152b6

3 files changed

Lines changed: 3 additions & 3 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:

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)