Skip to content

Commit f4737c9

Browse files
committed
Add tests for Python 3.9
1 parent 5ff341c commit f4737c9

File tree

5 files changed

+19
-13
lines changed

5 files changed

+19
-13
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,16 @@ matrix:
3131
env: TOXENV=py37-django22
3232
- python: 3.8
3333
env: TOXENV=py38-django22
34+
- python: 3.9
35+
env: TOXENV=py39-django22
3436
- python: 3.6
3537
env: TOXENV=py36-django30
3638
- python: 3.7
3739
env: TOXENV=py37-django30
3840
- python: 3.8
3941
env: TOXENV=py38-django30
42+
- python: 3.9
43+
env: TOXENV=py39-django30
4044
- python: 3.6
4145
env: TOXENV=py36-flake8
4246
- python: 3.6

CLASSIFIERS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Programming Language :: Python :: 3.5
99
Programming Language :: Python :: 3.6
1010
Programming Language :: Python :: 3.7
1111
Programming Language :: Python :: 3.8
12+
Programming Language :: Python :: 3.9
1213
Framework :: Django
1314
Framework :: Django :: 1.11
1415
Framework :: Django :: 2.0

ChangeLog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ master
99
*New:*
1010
- Drop support of Python 2.7
1111
- Confirm support of Python 3.8
12+
- Confirm support of Python 3.9
1213
- Confirm support of Django 3.0
1314

1415
.. _v1.4.1:

README.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ This package is compatible and tested with the following Python & Django version
1919

2020

2121

22-
+---------------+---------------------------------------+
23-
| Django | Python |
24-
+===============+=======================================+
25-
| 1.11 | 3.5, 3.6, 3.7 (as of 1.11.17) |
26-
+---------------+---------------------------------------+
27-
| 2.0, 2.1 | 3.5, 3.6, 3.7 |
28-
+---------------+---------------------------------------+
29-
| 2.2 | 3.5, 3.6, 3.7, 3.8 (as of 2.2.8) |
30-
+---------------+---------------------------------------+
31-
| 3.0 | 3.6, 3.7, 3.8 |
32-
+---------------+---------------------------------------+
22+
+---------------+------------------------------------------------------+
23+
| Django | Python |
24+
+===============+======================================================+
25+
| 1.11 | 3.5, 3.6, 3.7 (as of 1.11.17) |
26+
+---------------+------------------------------------------------------+
27+
| 2.0, 2.1 | 3.5, 3.6, 3.7 |
28+
+---------------+------------------------------------------------------+
29+
| 2.2 | 3.5, 3.6, 3.7, 3.8 (as of 2.2.8), 3.9 (as of 2.2.17) |
30+
+---------------+------------------------------------------------------+
31+
| 3.0 | 3.6, 3.7, 3.8, 3.9 (as of 3.0.11) |
32+
+---------------+------------------------------------------------------+
3333

3434

3535
`Full documentation <http://django-dirtyfields.readthedocs.org/en/develop/>`_

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
skipsdist = True
33
envlist =
44
py{35,36,37}-django{111,20,21}
5-
py{35,36,37,38}-django{22}
6-
py{36,37,38}-django{30}
5+
py{35,36,37,38,39}-django{22}
6+
py{36,37,38,39}-django{30}
77
py36-flake8
88
py36-django111-coverage
99
py36-django111-postgresql

0 commit comments

Comments
 (0)