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
python:
- "3.6"
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
matrix:
include:
- 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
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
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]"
script:
- tox -e $TOX_ENV
- tox

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

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

Loading…
Cancel
Save