Skip to content

Commit 7bf7529

Browse files
authored
Merge pull request #138 from colares/officially-support-python-3.7
Officially support Python 3.7
2 parents 69b213a + 1224261 commit 7bf7529

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ htmlcov/
1212
*.eggs
1313
*.py[co]
1414
.pytest_cache/
15+
16+
.idea/

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
language: python
22
python: 3.6
33

4-
sudo: false
5-
64
matrix:
75
include:
86
- python: 2.7
@@ -13,6 +11,9 @@ matrix:
1311
env: TOXENV=py35
1412
- python: 3.6
1513
env: TOXENV=py36
14+
- python: 3.7
15+
env: TOXENV=py37
16+
dist: xenial
1617
- python: pypy
1718
env: TOXENV=pypy
1819
- env: TOXENV=pep8

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"Programming Language :: Python :: 3.4",
5656
"Programming Language :: Python :: 3.5",
5757
"Programming Language :: Python :: 3.6",
58+
"Programming Language :: Python :: 3.7",
5859
"Programming Language :: Python :: Implementation :: CPython",
5960
"Programming Language :: Python :: Implementation :: PyPy",
6061
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,pypy,py34,py35,py36,pep8,py2pep8,packaging,noextra
2+
envlist = py27,pypy,py34,py35,py36,py37,pep8,py2pep8,packaging,noextra
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)