Skip to content

Commit 267f728

Browse files
committed
Add Python3.9 support.
1 parent 621019c commit 267f728

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-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

tox.ini

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@ 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}-dj{22,30,31,master}-{sqlite,postgresql,mysql}
107

118
[testenv]
129
deps =
@@ -63,6 +60,7 @@ python =
6360
3.6: py36
6461
3.7: py37
6562
3.8: py38
63+
3.9: py39
6664

6765
[gh-actions:env]
6866
DB_BACKEND =

0 commit comments

Comments
 (0)