Skip to content

Commit 1e9d869

Browse files
committed
Update supported versions
1 parent 6497561 commit 1e9d869

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ I no longer have the time to actively work on this project. I will gladly accept
1515
Features
1616
========
1717

18-
* SOCKS proxy client for Python 2.6 - 3.x
18+
* SOCKS proxy client for Python 2.7 and 3.4+
1919
* TCP and UDP both supported
2020
* HTTP proxy client included but not supported or recommended (you should use urllib2's or requests' own HTTP proxy interface)
2121
* urllib2 handler included. `pip install` / `setup.py install` will automatically install the `sockshandler` module.

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,13 @@
2121
keywords = ["socks", "proxy"],
2222
py_modules=["socks", "sockshandler"],
2323
install_requires=requirements,
24+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
2425
classifiers=(
25-
'Programming Language :: Python :: 2.6',
26+
'Programming Language :: Python :: 2',
2627
'Programming Language :: Python :: 2.7',
2728
'Programming Language :: Python :: 3',
29+
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.5',
31+
'Programming Language :: Python :: 3.6',
2832
)
2933
)

0 commit comments

Comments
 (0)