-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements and tox, travis files
- Loading branch information
Grzegorz Tężycki
committed
Oct 5, 2018
1 parent
6d1897a
commit 5f4d2a4
Showing
5 changed files
with
42 additions
and
197 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Django>=2.1 | ||
django-tables2>=1.21.0 | ||
Django>=2.1.2 | ||
django-tables2>=2.0.1 | ||
tox>=3.1.2 | ||
flake8 | ||
twine | ||
|
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,3 +1,2 @@ | ||
Django==2.1 | ||
django-tables2==2.0.0a4 | ||
../. | ||
Django==2.1.2 | ||
django-tables2==2.0.1 |
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,52 +1,43 @@ | ||
[tox] | ||
minversion = 1.8 | ||
envlist= | ||
py36-djmaster-dtmaster-tests, | ||
{py36}-dj{2.0,2.1}-dt{1.17,1.18,1.19,1.21,master}-tests, | ||
{py27,py36}-dj{1.11}-dt{1.17,1.18,1.19,1.21,master}-tests, | ||
{py27,py36}-dj{1.9,1.10,1.11}-dt{1.5,1.6,1.7,1.8,1.9,1.10,1.11,1.12,1.13,1.14,1.15,1.16}-tests, | ||
py36-djmaster-dt{1.21,2.0}-tests, | ||
py36-dj{2.0,2.1}-dtmaster-tests, | ||
|
||
py36-dj{2.0,2.1}-dt{1.21,2.0}-tests, | ||
|
||
{py27,py36}-dj{1.11}-dt{1.7,1.21}-tests, | ||
{py27,py36}-dj{1.9,1.10}-dt{1.5,1.6}-tests, | ||
|
||
{py27,py36}-{flake}, | ||
py36-isort | ||
|
||
[testenv] | ||
basepython = | ||
py27: python2.7 | ||
py36: python3.6 | ||
|
||
usedevelop = True | ||
recreate = True | ||
pip_pre = true | ||
|
||
deps = | ||
flake8 | ||
isort | ||
dj1.9: Django>=1.9,<1.10 | ||
dj1.10: Django>=1.9,<1.11 | ||
dj1.11: Django>=1.11,<1.12 | ||
dj2.0: Django>=2.0,<2.1 | ||
dj2.1: Django>=2.1,<2.2 | ||
dj2.0: Django>=1.11,<1.12 | ||
djmaster: https://github.com/django/django/archive/master.tar.gz | ||
dt1.1: django-tables2==1.1.8 | ||
dt1.2: django-tables2==1.2.6 | ||
dt1.3: django-tables2==1.3.0 | ||
dt1.4: django-tables2==1.4.2 | ||
dt1.5: django-tables2==1.5.0 | ||
dt1.6: django-tables2==1.6.1 | ||
dt1.7: django-tables2==1.7.1 | ||
dt1.8: django-tables2==1.8.0 | ||
dt1.9: django-tables2==1.9.1 | ||
dt1.10: django-tables2==1.10.0 | ||
dt1.11: django-tables2==1.11.0 | ||
dt1.12: django-tables2==1.12.0 | ||
dt1.13: django-tables2==1.13.0 | ||
dt1.14: django-tables2==1.14.2 | ||
dt1.15: django-tables2==1.15.0 | ||
dt1.16: django-tables2==1.16.0 | ||
dt1.17: django-tables2==1.17.1 | ||
dt1.18: django-tables2==1.18.0 | ||
dt1.19: django-tables2==1.19.0 | ||
dt1.21: django-tables2==1.21.2 | ||
dt1.1: django-tables2>=1.1,<1.2 | ||
dt1.2: django-tables2>=1.2,<1.3 | ||
dt1.3: django-tables2>=1.3,<1.4 | ||
dt1.4: django-tables2>=1.4,<1.5 | ||
dt1.5: django-tables2>=1.5,<1.6 | ||
dt1.6: django-tables2>=1.6,<1.7 | ||
dt1.7: django-tables2>=1.7,<1.8 | ||
dt1.21: django-tables2>=1.21,<2.0 | ||
dt2.0: django-tables2>=2.0,<2.1 | ||
dt2.1: django-tables2>=2.1,<2.2 | ||
dtmaster: https://github.com/bradleyayers/django-tables2/archive/master.zip | ||
|
||
commands = | ||
tests: ./runtests.py | ||
flake: flake8 | ||
isort: isort -rc -w80 -m3 -tc -c -df django_tables2_column_shifter runtests.py |