-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support Django 3.2 and drop Django 1.11, 2.0, and 2.1. (#320)
* Add to tox and travis grids. * Add new setting.
- Loading branch information
1 parent
b38dd58
commit 6bd46e2
Showing
4 changed files
with
21 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,20 @@ | ||
[tox] | ||
envlist = | ||
{py34,py35,py36,py37}-django111, | ||
{py34,py35,py36,py37}-django20, | ||
{py35,py36,py37}-django21, | ||
{py35,py36,py37}-django22, | ||
{py36,py37,py38}-django30, | ||
{py36,py37,py38}-django31, | ||
{py36,py37,py38}-djangomaster | ||
{py35,py36,py37,py38,py39}-django22 | ||
{py36,py37,py38,py39}-django30 | ||
{py36,py37,py38,py39}-django31 | ||
{py36,py37,py38,py39}-django32 | ||
{py36,py37,py38,py39}-djangomain | ||
|
||
[testenv] | ||
commands = python -W error::DeprecationWarning -W error::PendingDeprecationWarning -m coverage run ./quicktest.py leaflet --db={env:DATABASE:} | ||
deps = | ||
django111: Django>=1.11,<2.0 | ||
django20: Django>=2.0,<2.1 | ||
django21: Django>=2.1,<2.2 | ||
django22: Django>=2.2,<3.0 | ||
django30: Django>=3.0,<3.1 | ||
django30: Django>=3.1,<3.2 | ||
djangomaster: https://github.com/django/django/archive/master.tar.gz | ||
django22: Django~=2.2 | ||
django30: Django~=3.0 | ||
django31: Django~=3.1 | ||
django32: Django~=3.2 | ||
djangomain: https://github.com/django/django/archive/main.tar.gz | ||
postgres: psycopg2-binary | ||
argparse | ||
coverage | ||
passenv = DATABASE SPATIALITE_LIBRARY_PATH | ||
|