Skip to content

Commit 91b4afb

Browse files
authored
Add testing for Python 3.9 (#218)
1 parent 9640a36 commit 91b4afb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
python: ["3.5", "3.6", "3.7", "3.8"]
13+
python: ["3.5", "3.6", "3.7", "3.8", "3.9"]
1414
os: [ubuntu-latest, windows-latest]
1515
include:
1616
- python: "3.5"
@@ -21,11 +21,13 @@ jobs:
2121
tox_env: "py37"
2222
- python: "3.8"
2323
tox_env: "py38"
24+
- python: "3.9"
25+
tox_env: "py39"
2426

2527
steps:
2628
- uses: actions/checkout@v1
2729
- name: Set up Python
28-
uses: actions/setup-python@v1
30+
uses: actions/setup-python@v2
2931
with:
3032
python-version: ${{ matrix.python }}
3133
- name: Install tox

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"Programming Language :: Python :: 3.6",
3333
"Programming Language :: Python :: 3.7",
3434
"Programming Language :: Python :: 3.8",
35+
"Programming Language :: Python :: 3.9",
3536
"Programming Language :: Python :: 3 :: Only",
3637
"Topic :: Software Development :: Testing",
3738
],

tox.ini

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

55
[testenv]
66
passenv = USER USERNAME

0 commit comments

Comments
 (0)