Skip to content

Commit 73438f5

Browse files
hramezaniatodorov
authored andcommitted
Confirmed support for Python 3.9
1 parent d9a99d1 commit 73438f5

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,19 @@ matrix:
2828
env: TOXENV=py38-django-31
2929
- python: 3.8
3030
env: TOXENV=py38-django-master
31+
- python: 3.9
32+
env: TOXENV=py39-django-22
33+
- python: 3.9
34+
env: TOXENV=py39-django-30
35+
- python: 3.9
36+
env: TOXENV=py39-django-31
37+
- python: 3.9
38+
env: TOXENV=py39-django-master
3139
allow_failures:
3240
- env: TOXENV=py36-django-master
3341
- env: TOXENV=py37-django-master
3442
- env: TOXENV=py38-django-master
43+
- env: TOXENV=py39-django-master
3544
install:
3645
- pip install tox
3746
script:

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Unreleased
1515
characters, you should provide a custom Comment model
1616
(more about that in the documentation) with an appropriate
1717
``object_pk`` field.
18+
* Confirmed support for Python 3.9.
1819

1920

2021
2.0.0 (2020-12-20)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
'Programming Language :: Python :: 3.6',
3636
'Programming Language :: Python :: 3.7',
3737
'Programming Language :: Python :: 3.8',
38+
'Programming Language :: Python :: 3.9',
3839
],
3940
packages=find_packages(exclude=['tests', 'tests.*']),
4041
include_package_data=True,

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
[tox]
22
envlist =
3-
py3{5,6,7,8}-django22
4-
py3{6,7,8}-django30
5-
py3{6,7,8}-django31
6-
py3{6,7,8}-master
3+
py3{5,6,7,8,9}-django22
4+
py3{6,7,8,9}-django30
5+
py3{6,7,8,9}-django31
6+
py3{6,7,8,9}-master
77

88
[testenv]
99
basepython =
1010
py35: python3.5
1111
py36: python3.6
1212
py37: python3.7
1313
py38: python3.8
14+
py39: python3.9
1415
commands = {envpython} setup.py test
1516
setenv=
1617
PYTHONWARNINGS=default

0 commit comments

Comments
 (0)