Skip to content

Commit 4cbf094

Browse files
authored
Merge pull request #15 from kimetrica/django22-compatibility
Add Django 2.2 to tox.ini
2 parents b985fef + 11d899b commit 4cbf094

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

pip-requirements-min-django.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Django>=1.11
2-
Django<2.2
2+
Django<2.3

tox.ini

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
[flake8]
2+
exclude = migrations,.tox
3+
ignore = E127,E128,E266,N802,N803,N806
4+
max-line-length=160
5+
16
[tox]
27
#https://pypi.python.org/pypi/Django/1.11
38
#https://pypi.python.org/pypi/Django/2.0
49
#https://pypi.python.org/pypi/Django/2.1
5-
# See https://github.com/travis-ci/travis-ci/issues/5485
10+
#https://pypi.python.org/pypi/Django/2.2
611
envlist = py{27,34,36,37}-django{111},py{34,36,37}-django{20},py{36,37}-django{21},py{36,37}-django{22}
712
recreate = True
813

@@ -19,5 +24,5 @@ deps =
1924
django111: Django>=1.11,<2
2025
django20: Django>=2,<2.1
2126
django21: Django>=2.1,<2.2
22-
django22: Django==2.2b1
27+
django22: Django>=2.2,<2.3
2328
commands = django-admin.py test --traceback --pythonpath=. --settings=binary_database_files.tests.settings binary_database_files.tests.tests.DatabaseFilesTestCase{env:TESTNAME:}

0 commit comments

Comments
 (0)