Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6538103

Browse files
committedSep 10, 2018
Python 3.7 support
1 parent 2c7c2ae commit 6538103

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed
 

‎.travis.yml

+9-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ matrix:
1010
python: 3.5
1111
- os: linux
1212
python: 3.6
13+
- os: linux
14+
dist: xenial
15+
sudo: required
16+
python: 3.7
1317
# - os: linux
1418
# dist: trusty
1519
# sudo: required
@@ -21,10 +25,13 @@ matrix:
2125
env: PYTHON=2.7-dev
2226
- os: osx
2327
language: generic
24-
env: PYTHON=3.5-dev
28+
env: PYTHON=3.5
29+
- os: osx
30+
language: generic
31+
env: PYTHON=3.6
2532
- os: osx
2633
language: generic
27-
env: PYTHON=3.6-dev
34+
env: PYTHON=3.7
2835

2936
before_install: |
3037
# These steps are taken from https://pythonhosted.org/CodeChat/.travis.yml.html

‎appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ environment:
99
- py_version: 34
1010
- py_version: 35
1111
- py_version: 36
12+
- py_version: 37
1213

1314
platform:
1415
- x86

‎setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,6 @@ def write_version(filename, version_dict):
122122
'Programming Language :: Python :: 3.4',
123123
'Programming Language :: Python :: 3.5',
124124
'Programming Language :: Python :: 3.6',
125+
'Programming Language :: Python :: 3.7',
125126
],
126127
)

0 commit comments

Comments
 (0)
Please sign in to comment.