Skip to content

Commit

Permalink
Merge pull request #49 from florisla/python-3.7
Browse files Browse the repository at this point in the history
Announce support for Python 3.7
  • Loading branch information
ekohl committed Jan 10, 2019
2 parents f383990 + 3179358 commit 22d981e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
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

0 comments on commit 22d981e

Please sign in to comment.