Skip to content

Commit

Permalink
Added support for python 3.7 (#12)
Browse files Browse the repository at this point in the history
* Added support for python 3.7

* Fix .travis.yml mixup
  • Loading branch information
vernans committed Oct 3, 2018
1 parent 3e3bba7 commit 2bbee1a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Expand Up @@ -6,6 +6,11 @@ python:
- 3.5
- 3.6
- pypy
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.
- Added support for Python 3.7.


4.2.0 (2017-09-12)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -64,6 +64,7 @@ def alltests():
'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",
'Natural Language :: English',
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 2bbee1a

Please sign in to comment.