Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 86c0388

Browse files
authored
Enable py39 support (#21)
- include py39 CI testing - expose py39 compatibility
1 parent bb77552 commit 86c0388

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/tox.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
PREFIX: PYTEST_REQPASS=3
3232
- tox_env: py38
3333
PREFIX: PYTEST_REQPASS=3
34+
- tox_env: py39
35+
PREFIX: PYTEST_REQPASS=3
36+
- tox_env: py39-devel
37+
PREFIX: PYTEST_REQPASS=3
3438
- tox_env: packaging
3539

3640
steps:

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ classifiers =
4040
Programming Language :: Python :: 3.6
4141
Programming Language :: Python :: 3.7
4242
Programming Language :: Python :: 3.8
43+
Programming Language :: Python :: 3.9
4344

4445
Topic :: System :: Systems Administration
4546
Topic :: Utilities

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ envlist =
44
lint
55
docs
66
packaging
7-
py{36,37,38}
8-
py{36,37,38}-{devel}
7+
py{36,37,38,39}
8+
py{36,37,38,39}-{devel}
99

1010
# do not enable skip missing to avoid CI false positives
1111
skip_missing_interpreters = False

0 commit comments

Comments
 (0)