Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 6bd9507

Browse files
Merge pull request #80 from laughingman7743/support_py37
Support Python 3.7
2 parents 08fa4de + 9558abf commit 6bd9507

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
sudo: false
1+
dist: xenial
2+
sudo: required
23
language: python
34
cache:
45
- apt
@@ -17,6 +18,8 @@ matrix:
1718
env: TOXENV=py35
1819
- python: 3.6
1920
env: TOXENV=py36
21+
- python: 3.7
22+
env: TOXENV=py37
2023
install:
2124
- pip install tox codecov awscli
2225
before_script:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Requirements
2727

2828
* Python
2929

30-
- CPython 2,7, 3,4, 3.5, 3.6
30+
- CPython 2,7, 3,4, 3.5, 3.6, 3.7
3131

3232
* Java
3333

@@ -418,7 +418,7 @@ Run test multiple Python versions
418418
$ pip install pipenv
419419
$ pipenv install --dev
420420
$ pipenv run scripts/test_data/upload_test_data.sh
421-
$ pyenv local 3.6.5 3.5.5 3.4.8 2.7.14
421+
$ pyenv local 3.7.2 3.6.8 3.5.7 3.4.10 2.7.16
422422
$ pipenv run tox
423423
$ pipenv run scripts/test_data/delete_test_data.sh
424424

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,5 +149,6 @@ def run(self):
149149
'Programming Language :: Python :: 3.4',
150150
'Programming Language :: Python :: 3.5',
151151
'Programming Language :: Python :: 3.6',
152+
'Programming Language :: Python :: 3.7',
152153
],
153154
)

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,py34,py35,py36
2+
envlist = py27,py34,py35,py36,py37
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)