Skip to content

Commit 4034cb3

Browse files
committed
Add Python3.9 support.
1 parent 621019c commit 4034cb3

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
max-parallel: 5
1111
matrix:
12-
python-version: ['3.6', '3.7', '3.8']
12+
python-version: ['3.6', '3.7', '3.8', '3.9']
1313

1414
services:
1515
mariadb:
@@ -78,7 +78,7 @@ jobs:
7878
fail-fast: false
7979
max-parallel: 5
8080
matrix:
81-
python-version: ['3.6', '3.7', '3.8']
81+
python-version: ['3.6', '3.7', '3.8', '3.9']
8282

8383
services:
8484
postgres:
@@ -146,7 +146,7 @@ jobs:
146146
fail-fast: false
147147
max-parallel: 5
148148
matrix:
149-
python-version: ['3.6', '3.7', '3.8']
149+
python-version: ['3.6', '3.7', '3.8', '3.9']
150150

151151
steps:
152152
- uses: actions/checkout@v2

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers =
2525
Programming Language :: Python :: 3.6
2626
Programming Language :: Python :: 3.7
2727
Programming Language :: Python :: 3.8
28+
Programming Language :: Python :: 3.9
2829
Topic :: Software Development :: Libraries :: Python Modules
2930

3031
[options]

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ envlist =
33
docs
44
style
55
readme
6-
py{36,37,38}-dj22-sqlite
7-
py{36,37,38}-dj{30,31}-sqlite
8-
py{36,37,38}-djmaster-sqlite
9-
py{37,38}-dj{22,30,31}-{postgresql,mysql}
6+
py{36,37,38,39}-dj22-sqlite
7+
py{36,37,38,39}-dj{30,31}-sqlite
8+
py{36,37,38,39}-djmaster-sqlite
9+
py{37,38,39}-dj{22,30,31}-{postgresql,mysql}
1010

1111
[testenv]
1212
deps =
@@ -63,6 +63,7 @@ python =
6363
3.6: py36
6464
3.7: py37
6565
3.8: py38
66+
3.9: py39
6667

6768
[gh-actions:env]
6869
DB_BACKEND =

0 commit comments

Comments
 (0)