From 1ede58449a42f23b140022db2e6ec656c44b2780 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 14 Dec 2019 11:15:47 -0500 Subject: Drop support for Python 3.4, since cryptography dropped it (#884) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 3e76199..e98c41e 100755 --- a/setup.py +++ b/setup.py @@ -77,7 +77,6 @@ if __name__ == "__main__": 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', @@ -89,6 +88,7 @@ if __name__ == "__main__": 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: System :: Networking', ], + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*', packages=find_packages(where="src"), package_dir={"": "src"}, -- cgit v1.2.1