Skip to content

Commit

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

* fixed travis yaml envvar subunit

* Fix slight .travis.yml mixup
  • Loading branch information
vernans committed Oct 3, 2018
1 parent 4290dc3 commit 03f3ad7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ python:
- 3.6
- pypy
- pypy3
matrix:
include:
- python: "3.7"
dist: xenial
sudo: true
env: SUBUNIT=true
- python: "3.7"
dist: xenial
sudo: true
env: SUBUNIT=false
env:
- SUBUNIT=true
- SUBUNIT=false
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
- Reintroduce optional support for ``subunit``, now with support for both
version 1 and version 2 of its protocol.

- Added support for Python 3.7.

4.8.1 (2017-11-12)
==================

Expand Down
2 changes: 2 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ environment:
- python: 35-x64
- python: 36
- python: 36-x64
- python: 37
- python: 37-x64
- { python: 27, SUBUNIT: 1 }
- { python: 27-x64, SUBUNIT: 1 }
- { python: 34, SUBUNIT: 1 }
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ def read(*names):
"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',
"Topic :: Software Development :: Libraries :: Python Modules",
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 =
py{27,py,34,35,36}{,-subunit},coverage,docs
py{27,py,34,35,36,37}{,-subunit},coverage,docs

[testenv]
deps =
Expand Down

0 comments on commit 03f3ad7

Please sign in to comment.