Skip to content

Commit 57dfb8b

Browse files
committed
chore: include Python 3.9 in testing
1 parent 22bc7fa commit 57dfb8b

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: [3.6, 3.7, 3.8]
23+
python-version: [3.6, 3.7, 3.8, 3.9]
2424

2525
steps:
2626
- uses: actions/checkout@v2

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author = Moritz E. Beber
66
author_email = [email protected]
77
# Please consult https://pypi.org/classifiers/ for a full list.
88
classifiers =
9-
Development Status :: 2 - Pre-Alpha
9+
Development Status :: 3 - Alpha
1010
Environment :: Web Environment
1111
Intended Audience :: Developers
1212
Intended Audience :: Information Technology

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
[tox]
2-
envlist = isort, black, flake8, mypy, safety, docs, py3{6,7,8}
2+
envlist = isort, black, flake8, mypy, safety, docs, py3{6,7,8,9}
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38
9+
3.9: py39
910

1011
[testenv]
1112
deps =

0 commit comments

Comments
 (0)