8000 Support Python 3.5, 3.6 · chunkingz/twilio-python@b79b152 · GitHub
[go: up one dir, main page]

Skip to content

Commit b79b152

Browse files
committed
Support Python 3.5, 3.6
1 parent b5f007d commit b79b152

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ python:
44
- "3.2"
55
- "3.3"
66
- "3.4"
7+
- "3.5"
8+
- "3.6"
79
install:
810
- make install
911
- make test-install

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
':python_version=="3.2"': ['pysocks'],
3535
':python_version=="3.3"': ['pysocks'],
3636
':python_version=="3.4"': ['pysocks'],
37+
':python_version=="3.5"': ['pysocks'],
38+
':python_version=="3.6"': ['pysocks'],
3739
},
3840
packages = find_packages(),
3941
include_package_data=True,
@@ -47,6 +49,8 @@
4749
"Programming Language :: Python :: 3.2",
4850
"Programming Language :: Python :: 3.3",
4951
"Programming Language :: Python :: 3.4",
52+
"Programming Language :: Python :: 3.5",
53+
"Programming Language :: Python :: 3.6",
5054
"Topic :: Software Development :: Libraries :: Python Modules",
5155
"Topic :: Communications :: Telephony",
5256
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py32, py33, py34, pypy
2+
envlist = py26, py27, py32, py33, py34, py35, py36, pypy
33

44
[testenv]
55
deps= -r{toxinidir}/tests/requirements.txt

0 commit comments

Comments
 (0)
0