Skip to content

Commit 466422a

Browse files
committed
Drop python 3.2 support, unpin requests
1 parent b47a40f commit 466422a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: python
22
python:
3+
- "2.6"
34
- "2.7"
4-
- "3.2"
55
- "3.3"
66
- "3.4"
77
- "3.5"

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414
# You need to have the setuptools module installed. Try reading the setuptools
1515
# documentation: http://pypi.python.org/pypi/setuptools
16-
REQUIRES = ["requests == 2.10.0", "six", "pytz", "PyJWT == 1.4.2"]
16+
REQUIRES = ["requests", "six", "pytz", "PyJWT == 1.4.2"]
1717

1818
if sys.version_info < (2, 6):
1919
REQUIRES.append('simplejson')
@@ -31,7 +31,6 @@
3131
install_requires = REQUIRES,
3232
# bdist conditional requirements support
3333
extras_require={
34-
':python_version=="3.2"': ['pysocks'],
3534
':python_version=="3.3"': ['pysocks'],
3635
':python_version=="3.4"': ['pysocks'],
3736
':python_version=="3.5"': ['pysocks'],
@@ -45,8 +44,8 @@
4544
"License :: OSI Approved :: MIT License",
4645
"Operating System :: OS Independent",
4746
"Programming Language :: Python",
47+
"Programming Language :: Python :: 2.6",
4848
"Programming Language :: Python :: 2.7",
49-
"Programming Language :: Python :: 3.2",
5049
"Programming Language :: Python :: 3.3",
5150
"Programming Language :: Python :: 3.4",
5251
"Programming Language :: Python :: 3.5",

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

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

0 commit comments

Comments
 (0)