Merge pull request #21 from morganfainberg/morganfainberg-support-py35

Morganfainberg support py35
This commit is contained in:
Morgan Fainberg
2016-06-26 23:49:54 -07:00
committed by GitHub
3 changed files with 12 additions and 2 deletions

View File

@@ -1,4 +1,7 @@
language: python
python:
# See https://github.com/travis-ci/travis-ci/issues/4794
- 3.5
install:
- pip install tox
- pip install -r requirements.txt -r test-requirements.txt
@@ -7,4 +10,10 @@ script:
env:
- TOXENV=pep8
- TOXENV=py27
- TOXENV=py34
- TOXENV=py34
- TOXENV=py35
matrix:
include:
- python: 3.5
env:
- TOXENV=py35

View File

@@ -15,6 +15,7 @@ classifier =
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
[files]
packages =

View File

@@ -1,7 +1,7 @@
[tox]
minversion = 1.6
skipsdist = True
envlist = py34,py27,pep8,cover,doc
envlist = py35,py34,py27,pep8,cover,doc
[testenv]
usedevelop = True