Skip to content

Commit

Permalink
Drop support for python 3.4 - Add support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
azmeuk committed Dec 29, 2019
1 parent de20908 commit 326fb43
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 24 deletions.
29 changes: 7 additions & 22 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def find_version(*file_paths):
"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",
],
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 326fb43

Please sign in to comment.