Skip to content

Commit

Permalink
Add Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Sep 17, 2020
1 parent e283dd7 commit 867020f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
language: python
dist: xenial
python:
- 2.7
- 3.5
- 3.6
- 3.7
- pypy2.7-6.0.0
- pypy3.5-6.0.0
- 3.8
- pypy
- pypy3
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
5.0.0 (unreleased)
==================

- Add support for Python 3.7.
- Add support for Python 3.7 and 3.8.

- Drop support for Python 3.4.

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def read(*rnames):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Natural Language :: English',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py35,py36,py37,pypy,pypy3,docs,coverage
py27,py35,py36,py37,py38,pypy,pypy3,docs,coverage

[testenv]
commands =
Expand Down

0 comments on commit 867020f

Please sign in to comment.