Skip to content

Commit d177ad9

Browse files
committed
drop python2.7 support
1 parent 2df5aa7 commit d177ad9

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@
55

66
requests = "requests>=2.3.0,<3"
77

8-
# python 2.7.9 does not support SNI
9-
if sys.version_info < (2, 7, 9):
10-
requests = "requests[security]>=2.4.1,<3"
11-
128
install_requires = [
139
"pycryptodomex==3.8.1",
1410
requests,
@@ -59,7 +55,7 @@ def run_tests(self):
5955
extras_require={"test": tests_require},
6056
tests_require=tests_require,
6157
include_package_data=True,
62-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
58+
python_requires='>=3.5',
6359
classifiers=[
6460
"Intended Audience :: Developers",
6561
"Intended Audience :: System Administrators",
@@ -68,7 +64,6 @@ def run_tests(self):
6864
"Development Status :: 5 - Production/Stable",
6965
"Natural Language :: English",
7066
"Programming Language :: Python :: 3",
71-
"Programming Language :: Python :: 3.4",
7267
"Programming Language :: Python :: 3.5",
7368
"Programming Language :: Python :: 3.6",
7469
"Programming Language :: Python :: 3.7",

0 commit comments

Comments
 (0)