Skip to content

[30] Test and claim Python 3.7 support #32

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Oct 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 10 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"

matrix:
include:
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true

addons:
apt:
Expand Down
6 changes: 6 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ environment:
- TOXENV: py36-defaultreactor, win-py36-qt5reactor
PYTHON: "C:\\Python36-x64"

- TOXENV: py37-defaultreactor, win-py37-qt5reactor
PYTHON: "C:\\Python37"

- TOXENV: py37-defaultreactor, win-py37-qt5reactor
PYTHON: "C:\\Python37-x64"

install:
# https://github.com/pypa/virtualenv/issues/1050
- pip install -U git+https://github.com/pypa/virtualenv@e8163e83a92c9098f51d390289323232ece15e3b
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
entry_points={"pytest11": ["twisted = pytest_twisted"]},
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist=
py{27,34}-defaultreactor
py{35,36}-{default,qt5}reactor
win-py{35,36}-qt5reactor
py{35,36,37}-{default,qt5}reactor
win-py{35,36,37}-qt5reactor
linting

[testenv]
Expand Down