Skip to content

Commit b308cb1

Browse files
authored
Add support for py39 (#61)
* Bump linters and enable mypy * Add support for py39
1 parent b863954 commit b308cb1

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/tox.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
"py36",
2323
"py37",
2424
"py38",
25+
"py39",
2526
"lint",
2627
"packaging",
2728
]
@@ -47,6 +48,10 @@ jobs:
4748
python: "3.8"
4849
os: ubuntu-latest
4950
tox_env: py38
51+
- name: py39
52+
python: "3.9"
53+
os: ubuntu-latest
54+
tox_env: py39
5055

5156
- name: "lint"
5257
python: "3.7"

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifier =
2222
Programming Language :: Python :: 3.6
2323
Programming Language :: Python :: 3.7
2424
Programming Language :: Python :: 3.8
25+
Programming Language :: Python :: 3.9
2526

2627
[entry_points]
2728
console_scripts =

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.8
3-
envlist = lint,py{36,37,38},docs,packaging
3+
envlist = lint,py,docs,packaging
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)