Adding support for Python 3.5
This commit is contained in:
parent
fbb456781e
commit
6dc522aa3f
23
.travis.yml
23
.travis.yml
@ -1,4 +1,20 @@
|
|||||||
language: python
|
language: python
|
||||||
|
matrix:
|
||||||
|
include:
|
||||||
|
- python: 2.6
|
||||||
|
env: TOXENV=py26
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=py27
|
||||||
|
- python: 3.3
|
||||||
|
env: TOXENV=py33
|
||||||
|
- python: 3.4
|
||||||
|
env: TOXENV=py34
|
||||||
|
- python: 3.5
|
||||||
|
env: TOXENV=py35
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=pep8
|
||||||
|
- python: 2.7
|
||||||
|
env: TOXENV=bandit
|
||||||
install:
|
install:
|
||||||
- pip install tox
|
- pip install tox
|
||||||
- pip install bandit
|
- pip install bandit
|
||||||
@ -6,13 +22,6 @@ install:
|
|||||||
- pip install coveralls
|
- pip install coveralls
|
||||||
script:
|
script:
|
||||||
- tox
|
- tox
|
||||||
env:
|
|
||||||
- TOXENV=pep8
|
|
||||||
- TOXENV=py26
|
|
||||||
- TOXENV=py27
|
|
||||||
- TOXENV=py33
|
|
||||||
- TOXENV=py34
|
|
||||||
- TOXENV=bandit
|
|
||||||
after_success:
|
after_success:
|
||||||
- codecov
|
- codecov
|
||||||
- coveralls
|
- coveralls
|
||||||
|
1
setup.py
1
setup.py
@ -60,5 +60,6 @@ setuptools.setup(
|
|||||||
"Programming Language :: Python :: 2.7",
|
"Programming Language :: Python :: 2.7",
|
||||||
"Programming Language :: Python :: 3.3",
|
"Programming Language :: Python :: 3.3",
|
||||||
"Programming Language :: Python :: 3.4",
|
"Programming Language :: Python :: 3.4",
|
||||||
|
"Programming Language :: Python :: 3.5",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user