Merge pull request #126 from azmeuk/py38

Added official python 3.8 support, dropped python 3.4 support.
Thanks Éloi Rivard (@azmeuk) !
pull/132/head
Yuri Baburov 4 years ago committed by GitHub
commit 471d89dde9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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, doc envlist = py27, py35, py36, py37, py38, doc
[testenv] [testenv]
deps = deps =

Loading…
Cancel
Save