Skip to content

Commit

Permalink
Removing Python 2.7 and 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
verdan committed Dec 23, 2019
1 parent 18e6940 commit 7175dbb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 13 deletions.
14 changes: 5 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
language: python
python:
- '3.6'
- '3.5'
- '2.7'
- '3.7'
cache:
directories:
- "$HOME/.wheelhouse/"
Expand All @@ -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:
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 7175dbb

Please sign in to comment.