From 91d485466ec230d66b898b2774c0acec7916c09f Mon Sep 17 00:00:00 2001 From: Nicholas Serra Date: Mon, 19 Oct 2020 16:21:22 -0400 Subject: [PATCH] Update setup.py restrict to Python 3.5 and less than 4 --- setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) mode change 100644 => 100755 setup.py diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index d4bafcb4..822defd5 --- a/setup.py +++ b/setup.py @@ -17,12 +17,7 @@ Intended Audience :: Developers License :: OSI Approved :: MIT License Programming Language :: Python -Programming Language :: Python :: 2 -Programming Language :: Python :: 2.6 -Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 -Programming Language :: Python :: 3.3 -Programming Language :: Python :: 3.4 Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 @@ -51,7 +46,7 @@ package_dir={"": "lib"}, scripts=[script], description="A fast and complete Python implementation of Markdown", - python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*", + python_requires=">=3.5, <4", classifiers=classifiers.strip().split("\n"), long_description="""markdown2: A fast and complete Python implementation of Markdown.