Skip to content

Commit

Permalink
Add Python3.9 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
hramezani committed Dec 1, 2020
1 parent 621019c commit 4034cb3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.6', '3.7', '3.8', '3.9']

services:
mariadb:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.6', '3.7', '3.8', '3.9']

services:
postgres:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
fail-fast: false
max-parallel: 5
matrix:
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.6', '3.7', '3.8', '3.9']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules

[options]
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ envlist =
docs
style
readme
py{36,37,38}-dj22-sqlite
py{36,37,38}-dj{30,31}-sqlite
py{36,37,38}-djmaster-sqlite
py{37,38}-dj{22,30,31}-{postgresql,mysql}
py{36,37,38,39}-dj22-sqlite
py{36,37,38,39}-dj{30,31}-sqlite
py{36,37,38,39}-djmaster-sqlite
py{37,38,39}-dj{22,30,31}-{postgresql,mysql}

[testenv]
deps =
Expand Down Expand Up @@ -63,6 +63,7 @@ python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39

[gh-actions:env]
DB_BACKEND =
Expand Down

0 comments on commit 4034cb3

Please sign in to comment.