Drop support for python 3.4 - Add support for python 3.8

pull/126/head
Éloi Rivard 4 years ago
parent de20908e57
commit 326fb43b4c

@ -1,30 +1,15 @@
language: python language: python
python: python:
- "3.6" - 2.7
- 3.5
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs - 3.6
matrix: - 3.7
include: - 3.8
- name: "Python: 3.7"
python: "3.7"
dist: xenial
sudo: true
env: TOX_ENV=py37
env:
- TOX_ENV=py27
- 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 $TRAVIS_PYTHON_VERSION
install: install:
- travis_retry pip install -U pip wheel tox - travis_retry pip install -U pip wheel tox-travis
- travis_retry pip install -U -r requirements.txt -e ".[test]" - travis_retry pip install -U -r requirements.txt -e ".[test]"
script: script:
- tox -e $TOX_ENV - tox

@ -73,9 +73,9 @@ setup(
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7", "Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3", "Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
], ],
) )

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

Loading…
Cancel
Save