Skip to content

Commit

Permalink
Support LTS + Current versions of Django (#155)
Browse files Browse the repository at this point in the history
* Add support for Django 3.1
  • Loading branch information
cwdavies committed Aug 25, 2020
1 parent b920d28 commit 93763c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

install_requires = [
"beautifulsoup4>=4.5.0,<4.9",
"Django>=1.11,<2.3",
"Django>=1.11,<3.2",
"django-cors-headers",
"dj-database-url>=0.4.2,<1",
"django-localflavor>=1.1,<3.1",
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
skipsdist=True
envlist=lint,py{36}-dj{22}
envlist=lint,py{36}-dj{22,31}

[testenv]
install_command=pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -15,6 +15,7 @@ basepython=

deps=
dj22: Django>=2.2,<2.3
dj31: Django>=3.1,<3.2

[testenv:lint]
recreate=False
Expand Down Expand Up @@ -45,6 +46,5 @@ multi_line_output=3
skip=.tox,migrations
use_parentheses=1
known_django=django
known_future_library=future
default_section=THIRDPARTY
sections=FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER

0 comments on commit 93763c8

Please sign in to comment.