Skip to content

Commit 75d95ff

Browse files
committed
Setup for Python 3.7 and Git Twisted
1 parent 4f5f656 commit 75d95ff

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
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]
99
deps=
1010
greenlet
1111
pytest
12-
twisted
12+
git+https://github.com/twisted/twisted@672edec1a99128f534a1e06f86a1c157ac3bd010
1313
qt5reactor: pytest-qt
1414
qt5reactor: qt5reactor
1515
qt5reactor: pytest-xvfb

0 commit comments

Comments
 (0)