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
mgedmin committed Nov 30, 2018
1 parent e1e8d83 commit c5a6be8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
language: python
sudo: false
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7-dev
- pypy
- pypy3
matrix:
include:
- python: 3.7
dist: xenial
install:
- pip install -U pip setuptools
- pip install -U coverage coveralls
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
4.3.2 (unreleased)
==================

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


4.3.1 (2017-12-09)
==================

- Fix test which will break in the upcomming Python 3.7 release.
- Fix test which will break in the upcoming Python 3.7 release.


4.3.0 (2017-07-27)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py34,py35,py36,pypy,pypy3
envlist = py27,py34,py35,py36,py37,pypy,pypy3

[testenv]
usedevelop = true
Expand Down

0 comments on commit c5a6be8

Please sign in to comment.