Skip to content

Commit

Permalink
Add support for Django 3.1, 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
a-p-f committed Jun 29, 2021
1 parent f00ce4e commit b0730b3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=["Django>=2.2,<3.1", "django-dynamic-path>=0.0.4<1", "django_referer_csrf<1", "django_early_return<1", "backports-datetime-fromisoformat>=1.0.0"],
install_requires=["Django>=2.2,<3.3", "django-dynamic-path>=0.0.4<1", "django_referer_csrf<1", "django_early_return<1", "backports-datetime-fromisoformat>=1.0.0"],
)
4 changes: 4 additions & 0 deletions src/django_tree_view/RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 4.1.1

Add support for Django 3.1, 3.2

## 4.1.0

Add support for date capturing via `date__` directories.
Expand Down
2 changes: 1 addition & 1 deletion src/django_tree_view/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.1.0
4.1.1
4 changes: 3 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
[tox]
envlist = {py36,py37}-{django22,django30}
envlist = {py36}-{django22},{py37}-{django30,django31,django32}
[testenv]
deps = pytest
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
commands =
python -Wa manage.py test tests

0 comments on commit b0730b3

Please sign in to comment.