Skip to content

Commit b78a6c9

Browse files
authored
Merge pull request #32 from altendky/30-altendky-3.7_support
[30] Test and claim Python 3.7 support
2 parents b3c0ada + 987a69a commit b78a6c9

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

.travis.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
language: python
2-
python:
3-
- "2.7"
4-
- "3.4"
5-
- "3.5"
6-
- "3.6"
2+
3+
matrix:
4+
include:
5+
- python: 2.7
6+
- python: 3.4
7+
- python: 3.5
8+
- python: 3.6
9+
- python: 3.7
10+
dist: xenial
11+
sudo: true
712

813
addons:
914
apt:

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ environment:
2626
- TOXENV: py36-defaultreactor, win-py36-qt5reactor
2727
PYTHON: "C:\\Python36-x64"
2828

29+
- TOXENV: py37-defaultreactor, win-py37-qt5reactor
30+
PYTHON: "C:\\Python37"
31+
32+
- TOXENV: py37-defaultreactor, win-py37-qt5reactor
33+
PYTHON: "C:\\Python37-x64"
34+
2935
install:
3036
# https://github.com/pypa/virtualenv/issues/1050
3137
- pip install -U git+https://github.com/pypa/virtualenv@e8163e83a92c9098f51d390289323232ece15e3b

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"Programming Language :: Python :: 3.4",
2828
"Programming Language :: Python :: 3.5",
2929
"Programming Language :: Python :: 3.6",
30+
"Programming Language :: Python :: 3.7",
3031
],
3132
entry_points={"pytest11": ["twisted = pytest_twisted"]},
3233
)

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist=
33
py{27,34}-defaultreactor
4-
py{35,36}-{default,qt5}reactor
5-
win-py{35,36}-qt5reactor
4+
py{35,36,37}-{default,qt5}reactor
5+
win-py{35,36,37}-qt5reactor
66
linting
77

88
[testenv]

0 commit comments

Comments
 (0)