Skip to content

Commit

Permalink
Add support for Python 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Oct 9, 2018
1 parent c2fa995 commit 28dd0bf
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .travis.yml
Expand Up @@ -5,12 +5,13 @@ python:
- 3.4
- 3.5
- 3.6
# Force a newer PyPy on the old 'precise' CI image
# in order to install 'cryptography' needed for coveralls
# After September 2017 this should be the default and the version
# pin can be removed.
- pypy-5.6.0
- pypy3.5-5.8.0
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Expand Up @@ -5,7 +5,7 @@
4.2.1 (unreleased)
==================

- Nothing changed yet.
- Add support for Python 3.7.


4.2.0 (2017-09-05)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -49,6 +49,7 @@ def read(*rnames):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py34,py35,py36,pypy,pypy3,coverage,docs
py27,py34,py35,py36,py37,pypy,pypy3,coverage,docs

[testenv]
commands =
Expand Down

0 comments on commit 28dd0bf

Please sign in to comment.