Skip to content

Commit

Permalink
Added django 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vint21h committed Sep 8, 2020
1 parent e791a35 commit 3a13568
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ python:
env:
- DJANGO="2.2.x"
- DJANGO="3.0.x"
- DJANGO="3.1.x"
before_install:
- |
pip install pipenv
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ twine = "==3.2.0"


[packages]
django = ">=2.2<=3.1"
django = ">=2.2<=3.2"
django-appconf = ">=1.0.3"


Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers =
Environment :: Plugins
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: Unix
Programming Language :: Python :: 3.6
Expand All @@ -34,7 +35,7 @@ zip_safe = False
include_package_data = True
test_suite = tests
install_requires =
django>=2.2<=3.1
django>=2.2<=3.2
django-appconf>=1.0.3


Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ skipsdist = False
envlist =
{3.6,3.7,3.8}-2.2.x
{3.6,3.7,3.8}-3.0.x
{3.6,3.7,3.8}-3.1.x
check
check-build

Expand All @@ -19,6 +20,7 @@ setenv =
deps =
2.2.x: Django>=2.2,<3.0
3.0.x: Django>=3.0,<3.1
3.1.x: Django>=3.1,<3.2
commands=
pip install .[test]
make test
Expand All @@ -45,7 +47,7 @@ whitelist_externals =

[travis]
os =
linux: {3.6,3.7,3.8}-2.2.x,{3.6,3.7,3.8}-3.0.x,check,check-build
linux: {3.6,3.7,3.8}-2.2.x,{3.6,3.7,3.8}-3.0.x,{3.6,3.7,3.8}-3.1.x,check,check-build
python =
3.6: 3.6,check,check-build
3.7: 3.7,check,check-build
Expand All @@ -56,3 +58,4 @@ python =
DJANGO =
2.2.x: 2.2.x,check,check-build
3.0.x: 3.0.x,check,check-build
3.1.x: 3.1.x,check,check-build

0 comments on commit 3a13568

Please sign in to comment.