From a42ec20880d44150022b8cd9c852fff6cca2dcaa Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 4 Oct 2021 16:22:33 +0800 Subject: py27 going, going, gone (#1047) * py27 going, going, gone * black * more black * ok then * forgot to remove pypy2 --- setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 1ca7b11..b9cd5bf 100755 --- a/setup.py +++ b/setup.py @@ -76,8 +76,6 @@ if __name__ == "__main__": "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", @@ -89,15 +87,12 @@ 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.*,!=3.5.*" - ), + python_requires=(">=3.6"), packages=find_packages(where="src"), package_dir={"": "src"}, install_requires=[ # Fix cryptographyMinimum in tox.ini when changing this! "cryptography>=3.3", - "six>=1.5.2", ], extras_require={ "test": ["flaky", "pretend", "pytest>=3.0.1"], -- cgit v1.2.1