Skip to content

Commit 82e52ff

Browse files
authored
Merge pull request #161 from ayush--s/py37_support
claim support for python 3.7
2 parents 6cb0824 + ea951db commit 82e52ff

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: python
22

3+
dist: xenial
4+
35
sudo: required
46

57
services:
@@ -10,12 +12,14 @@ python:
1012
- "3.4"
1113
- "3.5"
1214
- "3.6"
15+
- "3.7"
1316

1417
before_install:
1518
# show docker version
1619
- docker --version
1720

1821
install:
22+
- pip install pip==9.0
1923
- pip install -r requirements-dev.txt
2024
- pip install codecov
2125
- pip install -e .

appveyor.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ environment:
1818
PYTHON_VERSION: "3.6.3"
1919
PYTHON_ARCH: "32"
2020

21+
- PYTHON: "C:\\Python37"
22+
PYTHON_VERSION: "3.7.0"
23+
PYTHON_ARCH: "32"
24+
2125
init:
2226
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
2327

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@
5151
'Programming Language :: Python :: 3',
5252
'Programming Language :: Python :: 3.3',
5353
'Programming Language :: Python :: 3.4',
54+
'Programming Language :: Python :: 3.5',
55+
'Programming Language :: Python :: 3.6',
56+
'Programming Language :: Python :: 3.7',
5457
'Topic :: Software Development',
5558
'Topic :: Software Development :: Libraries :: Python Modules',
5659
],

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py36
2+
envlist = py27, py33, py34, py35, py36, py37
33
[testenv]
44
deps = pytest
55
mock

0 commit comments

Comments
 (0)