Skip to content

Commit e2d809c

Browse files
authored
Merge pull request #46 from peopledoc/41-confirm-django3.0
Confirm support of Django 3.0
2 parents b45f2cf + c47d581 commit e2d809c

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Drop Python 2 Support (#37).
66
- Drop Django 1.11 support (#40).
77
- Remove `six` from the requirements (#43).
8+
- Confirm support for Django 3.0 (#41).
89

910
## 1.5.0 (2020-02-05)
1011

README.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ your RAM.
1111
Tested with all the combinations of:
1212

1313
* Python: 3.5, 3.6, 3.7, 3.8
14-
* Django: 2, 2.1, 2.2, master
14+
* Django: 2, 2.1, 2.2, 3.0, master
1515

1616

17+
.. note::
18+
19+
Django 3.0 is incompatible with Python 3.5, see <https://docs.djangoproject.com/en/3.0/releases/3.0/#python-compatibility>
20+
1721
Usage
1822
=====
1923

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
envlist =
33
flake8
44
py{35,36,37,38}-django{20,21,22}
5+
py{36,37,38}-django30
56
py{36,37,38}-djangomaster
67

78
[testenv]
@@ -16,6 +17,7 @@ deps =
1617
django20: Django>=2.0,<2.1
1718
django21: Django>=2.1,<2.2
1819
django22: Django>=2.2,<3.0
20+
django30: Django>=3.0,<3.1
1921
djangomaster: https://github.com/django/django/archive/master.tar.gz#egg=django
2022
commands =
2123
python --version

0 commit comments

Comments
 (0)