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

Announce support for Python 3.7 #49

Merged
merged 2 commits into from Jan 10, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
21 changes: 17 additions & 4 deletions .travis.yml
@@ -1,13 +1,27 @@
sudo: false
language: python
dist: xenial
# require sudo to avoid Travis falling back to trusty; see
# https://github.com/travis-ci/travis-ci/issues/10110 and also
# https://github.com/travis-ci/travis-ci/issues/9069
sudo: required

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3"
- "3.7"

# also test PyPy; do this on Trusty due to
# https://travis-ci.community/t/pypy-2-7-on-xenial/889
matrix:
include:
- python: "pypy"
dist: trusty
sudo: False
- python: "pypy3"
dist: trusty
sudo: False

install:
- git config --global user.email "bumpversion-test-git@travis.ci"
Expand All @@ -19,4 +33,3 @@ install:
- pip install tox-travis

script: tox

3 changes: 3 additions & 0 deletions appveyor.yml
Expand Up @@ -20,6 +20,9 @@ environment:
- PYTHON: "C:/Python36"
TOXENV: "py36"

- PYTHON: "C:/Python37"
TOXENV: "py37"

init:
- "ECHO %TOXENV%"
- "ECHO %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -39,6 +39,7 @@
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: PyPy',
],
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py27-configparser, py34, py35, py36, pypy, pypy3
envlist = py27, py27-configparser, py34, py35, py36, py37, pypy, pypy3

[testenv]
passenv = HOME
Expand Down