Skip to content

Commit

Permalink
Restore django 3.0 support
Browse files Browse the repository at this point in the history
  • Loading branch information
danjac committed Apr 8, 2021
1 parent dbda8fc commit 15cc243
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@

Add support for Django 3.2

Remove support for Django 3.0

Add rendering options to mixin classes

## [0.0.47] - 2021-4-4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.8",
requires=["django (>=3.1)"],
requires=["django (>=3.0)"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"turbo_response": ["templates/**/*.html", "jinja2/**/*.html"]},
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[tox]
envlist =
py{38,39}-django30
py{38,39}-django31
py{38,39}-django32
py{38,39}-djangodev

[testenv]
changedir=tests
deps =
django30: django>=3.0,<3.1
django31: django>=3.1,<3.2
django32: django>=3.2,<3.3
djangodev: https://github.com/django/django/archive/main.tar.gz
Expand Down

0 comments on commit 15cc243

Please sign in to comment.