diff --git a/.travis.yml b/.travis.yml index 4151c8f..1a121dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ language: python python: - '3.6' -- '3.5' -- '2.7' +- '3.7' cache: directories: - "$HOME/.wheelhouse/" @@ -11,16 +10,13 @@ env: - TRAVIS_CACHE=$HOME/.travis_cache/ matrix: include: - - python: '2.7' - env: - - TOX_ENV=py27 - - python: '3.5' - env: - - TOX_ENV=py35 - python: '3.6' env: - TOX_ENV=py36 - - python: '2.7' + - python: '3.7' + env: + - TOX_ENV=py36 + - python: '3.6' env: - TOX_ENV=coverage install: diff --git a/setup.py b/setup.py index 8744bc8..fdf4506 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,6 @@ 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', ], test_suite='tests', diff --git a/tox.ini b/tox.ini index e9d249e..7d6a0af 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] -envlist = py27, py35, py36, pylint, coverage +envlist = py36, py37, pylint, coverage [travis] python = 3.6: py36 - 3.5: py35 - 2.7: py27 + 3.7: py37 [testenv] deps=-r{toxinidir}/requirements.txt