Add Python 3.5
This commit is contained in:
parent
852d575415
commit
61277aa1c8
|
@ -1,4 +1,8 @@
|
||||||
language: python
|
language: python
|
||||||
|
|
||||||
|
python:
|
||||||
|
- 3.5
|
||||||
|
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- secure: ivg6II471E9HV8xyqnawLIuP/sZ0J63Y+BC0BQcRVKtLn/K3zmD1ozM3TFL9S549Nxd0FqDKHXJvXsgaTGIDpK8sxE2AMKV5IojyM0iAVuN7YjPK9vwSlRw1u0EysPMFqxOZVQnoDyHrSGIUrP/VMdnhBu6dbUX0FyEkvZshXhY=
|
- secure: ivg6II471E9HV8xyqnawLIuP/sZ0J63Y+BC0BQcRVKtLn/K3zmD1ozM3TFL9S549Nxd0FqDKHXJvXsgaTGIDpK8sxE2AMKV5IojyM0iAVuN7YjPK9vwSlRw1u0EysPMFqxOZVQnoDyHrSGIUrP/VMdnhBu6dbUX0FyEkvZshXhY=
|
||||||
|
@ -16,14 +20,19 @@ env:
|
||||||
- TOXENV=py34
|
- TOXENV=py34
|
||||||
- TOXENV=pypy
|
- TOXENV=pypy
|
||||||
- TOXENV=pypy3
|
- TOXENV=pypy3
|
||||||
|
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- travis_retry pip install tox==2.1.1
|
- travis_retry pip install tox==2.1.1
|
||||||
- travis_retry pip install coveralls
|
- travis_retry pip install coveralls
|
||||||
|
|
||||||
script: tox
|
script: tox
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- travis_retry pip install coveralls && coveralls
|
- travis_retry pip install coveralls && coveralls
|
||||||
- travis_retry pip install scrutinizer-ocular && ocular
|
- travis_retry pip install scrutinizer-ocular && ocular
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
allow_failures:
|
allow_failures:
|
||||||
- python: '3.4'
|
- python: '3.4'
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -28,6 +28,7 @@ setup(
|
||||||
"Programming Language :: Python :: 3",
|
"Programming Language :: Python :: 3",
|
||||||
"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",
|
||||||
],
|
],
|
||||||
keywords=["Last.fm", "music", "scrobble", "scrobbling"],
|
keywords=["Last.fm", "music", "scrobble", "scrobbling"],
|
||||||
packages=find_packages(exclude=('tests*',)),
|
packages=find_packages(exclude=('tests*',)),
|
||||||
|
|
Loading…
Reference in a new issue