Skip to content

Commit

Permalink
Add support for Python 3.8 (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k authored and carsongee committed Nov 6, 2019
1 parent 1e85125 commit 97bda02
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
language: python
dist: trusty
dist: xenial
matrix:
include:
# See: https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-411099620
- python: 3.8
- python: 3.7
dist: xenial
sudo: true
- python: 3.6
- python: 3.5
- python: 3.4
dist: trusty
- python: 2.7
install:
- "pip install tox-travis tox==3.0.0 coveralls"
- "pip install tox-travis tox==3.14.0 coveralls"
- "pip install -e ."
script: tox
after_success:
Expand Down
3 changes: 2 additions & 1 deletion pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ ignored-classes = pytest

[MESSAGES CONTROL]

disable = useless-object-inheritance
disable = import-outside-toplevel,
useless-object-inheritance
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,6 @@
'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
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,py37
envlist = py27,py34,py35,py36,py37,py38
skip_missing_interpreters =
true
[testenv]
Expand Down

0 comments on commit 97bda02

Please sign in to comment.