Add Python 3.5

This commit is contained in:
hugovk 2017-01-02 18:12:04 +02:00
parent 852d575415
commit 61277aa1c8
3 changed files with 11 additions and 1 deletions

View file

@ -1,4 +1,8 @@
language: python
python:
- 3.5
env:
global:
- secure: ivg6II471E9HV8xyqnawLIuP/sZ0J63Y+BC0BQcRVKtLn/K3zmD1ozM3TFL9S549Nxd0FqDKHXJvXsgaTGIDpK8sxE2AMKV5IojyM0iAVuN7YjPK9vwSlRw1u0EysPMFqxOZVQnoDyHrSGIUrP/VMdnhBu6dbUX0FyEkvZshXhY=
@ -16,14 +20,19 @@ env:
- TOXENV=py34
- TOXENV=pypy
- TOXENV=pypy3
sudo: false
install:
- travis_retry pip install tox==2.1.1
- travis_retry pip install coveralls
script: tox
after_success:
- travis_retry pip install coveralls && coveralls
- travis_retry pip install scrutinizer-ocular && ocular
matrix:
allow_failures:
- python: '3.4'

View file

@ -28,6 +28,7 @@ setup(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords=["Last.fm", "music", "scrobble", "scrobbling"],
packages=find_packages(exclude=('tests*',)),

View file

@ -1,5 +1,5 @@
[tox]
envlist = py34, py27, pypy, pypy3
envlist = py35, py27, py34, pypy, pypy3
recreate = False
[testenv]