Skip to content

Commit f277b9d

Browse files
authored
Merge pull request #1411 from hramezani/python39
Add Python3.9 support.
2 parents 15b427a + 2fadc37 commit f277b9d

File tree

4 files changed

+17
-7
lines changed

4 files changed

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

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ Django Debug Toolbar
1414
:target: https://codecov.io/gh/jazzband/django-debug-toolbar
1515
:alt: Test coverage status
1616

17+
.. image:: https://img.shields.io/pypi/pyversions/django-debug-toolbar
18+
:target: https://pypi.python.org/pypi/django-debug-toolbar
19+
:alt: Supported Python versions
20+
21+
.. image:: https://img.shields.io/pypi/djversions/django-debug-toolbar
22+
:target: https://pypi.org/project/django-debug-toolbar
23+
:alt: Supported Django versions
24+
1725
The Django Debug Toolbar is a configurable set of panels that display various
1826
debug information about the current request/response and when clicked, display
1927
more details about the panel's content.

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)