Skip to content

Commit

Permalink
Add Django 1.11 and Python3.6 to testing configs
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfischer committed Apr 30, 2017
1 parent 0855294 commit ca6eca2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions runtravis.py
Expand Up @@ -7,10 +7,11 @@
# Handle incompatible versions of Python & Django
# https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
SUPPORTED_VERSIONS = {
'2.7': ('Django<1.9', 'Django<1.10', 'Django<1.11'),
'2.7': ('Django<1.9', 'Django<1.10', 'Django<1.11', 'Django<1.12'),
'3.3': ('Django<1.9',),
'3.4': ('Django<1.9', 'Django<1.10', 'Django<1.11'),
'3.5': ('Django<1.9', 'Django<1.10', 'Django<1.11'),
'3.4': ('Django<1.9', 'Django<1.10', 'Django<1.11', 'Django<1.12'),
'3.5': ('Django<1.9', 'Django<1.10', 'Django<1.11', 'Django<1.12'),
'3.6': ('Django<1.12',),
}

python_version = os.environ.get('TRAVIS_PYTHON_VERSION')
Expand Down

0 comments on commit ca6eca2

Please sign in to comment.