Merge pull request #101 from hugovk/add-3.5-3.6

Add support for Python 3.5 and 3.6, drop support for Python 3.3 and 2.6
pull/87/merge
Yuri Baburov 7 years ago committed by GitHub
commit 97e86c4559
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,13 +1,17 @@
language: python
python:
- "3.4"
- "3.6"
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=py36
before_install:
# work around https://github.com/travis-ci/travis-ci/issues/8363
- pyenv global system 3.5
install:
- travis_retry pip install -U pip wheel tox

@ -38,11 +38,11 @@ setup(
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)

@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
envlist = py26, py27, py33, py34
envlist = py27, py34, py35, py36
[testenv]
deps=pytest

Loading…
Cancel
Save