Skip to content
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

Run on 3.7 proper #405

Merged
merged 1 commit into from
Jul 5, 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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ matrix:
env: TOXENV=pypy
- python: "pypy3"
env: TOXENV=pypy3
- python: "3.7"
env: TOXENV=py37
dist: xenial
sudo: true

# Prevent breakage by a new releases
- python: "3.6-dev"
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = pre-commit,lint,py27,py34,py35,py36,pypy,pypy3,manifest,docs,readme,changelog,coverage-report
envlist = pre-commit,lint,py27,py34,py35,py36,py37,pypy,pypy3,manifest,docs,readme,changelog,coverage-report


[testenv]
Expand All @@ -16,7 +16,7 @@ extras = tests
commands = coverage run --parallel -m pytest {posargs}


[testenv:py36]
[testenv:py37]

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

# Python 3.6+ has a number of compile-time warnings on invalid string escapes.
# PYTHONWARNINGS=d and --no-compile below make them visible during the Tox run.
install_command = pip install --no-compile {opts} {packages}
Expand Down