From 3012665fc49854b28d7bd2aadb7907a0f885bc7d Mon Sep 17 00:00:00 2001 From: Patrick Arminio Date: Sun, 18 Oct 2015 00:36:13 +0100 Subject: [PATCH] Adding python 3.5 support --- setup.py | 2 ++ tox.ini | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78f31fc2ae..69259aa554 100755 --- a/setup.py +++ b/setup.py @@ -34,6 +34,7 @@ ':python_version=="3.2"': ['pysocks'], ':python_version=="3.3"': ['pysocks'], ':python_version=="3.4"': ['pysocks'], + ':python_version=="3.5"': ['pysocks'], }, packages = find_packages(), include_package_data=True, @@ -49,6 +50,7 @@ "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Communications :: Telephony", ], diff --git a/tox.ini b/tox.ini index 5249597112..51d8d59264 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py32, py33, py34, pypy +envlist = py26, py27, py32, py33, py34, py35, pypy [testenv] deps= -r{toxinidir}/tests/requirements.txt