-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from caktus/update_supported_versions
Support Django 1.11 and Python 3.6, drop some older python versions
- Loading branch information
Showing
8 changed files
with
66 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,50 @@ | ||
# Use travis container-based build system for speed | ||
sudo: false | ||
|
||
# Ubuntu trusty (14.04) - latest that Travis offers | ||
dist: trusty | ||
|
||
# Make sure all the python versions we need are pre-installed | ||
# (apt-get is not available in the container-based build system) | ||
addons: | ||
apt: | ||
sources: | ||
- deadsnakes | ||
packages: | ||
- python2.7 | ||
- python3.4 | ||
- python3.5 | ||
- python3.6 | ||
|
||
language: python | ||
|
||
# The version of Python that'll be used to invoke tox. Has no effect | ||
# on what version of Python tox uses to run each set of tests. | ||
python: | ||
- "3.5" | ||
|
||
# Test a sampling of combinations | ||
env: | ||
- TOXENV=py26-1.5,py27-1.5,py33-1.5 | ||
- TOXENV=py26-1.6,py27-1.6,py33-1.6 | ||
- TOXENV=py27-1.7,py33-1.7,py34-1.7 | ||
- TOXENV=py27-1.8,py33-1.8,py34-1.8 | ||
- TOXENV=py27-1.9,py34-1.9,py35-1.9 | ||
- TOXENV=py27-1.10,py34-1.10,py35-1.10 | ||
- TOXENV=py27-trunk,py34-trunk,py35-trunk | ||
- TOXENV=py27-1.7 | ||
- TOXENV=py27-1.8 | ||
- TOXENV=py27-1.10 | ||
- TOXENV=py27-1.11 | ||
- TOXENV=py34-1.7 | ||
- TOXENV=py34-1.8 | ||
- TOXENV=py34-1.11 | ||
- TOXENV=py35-1.9 | ||
- TOXENV=py35-1.10 | ||
- TOXENV=py35-1.11 | ||
- TOXENV=py36-1.8 | ||
- TOXENV=py36-1.10 | ||
- TOXENV=py36-1.11 | ||
|
||
install: | ||
- pip install tox | ||
|
||
script: | ||
- tox | ||
|
||
matrix: | ||
allow_failures: | ||
- env: TOXENV=py27-trunk,py33-trunk | ||
# | ||
#matrix: | ||
# allow_failures: | ||
# - env: TOXENV=py27-trunk,py33-trunk |
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
'major': 1, | ||
'minor': 3, | ||
'micro': 0, | ||
'releaselevel': 'dev', | ||
'releaselevel': 'final', | ||
} | ||
|
||
|
||
|
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
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