summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorPaul McGuire <ptmcg@austin.rr.com>2019-08-05 00:21:52 -0500
committerPaul McGuire <ptmcg@austin.rr.com>2019-08-05 00:21:52 -0500
commitc45813fdaa1254b1d28a371f357a7856e7443e51 (patch)
tree980ce2e2593a72b99e7fc1ffe3612bb5d671aec8 /setup.py
parent897e536d2131c6d07cbc355edb0ed744213c6997 (diff)
downloadpyparsing-git-c45813fdaa1254b1d28a371f357a7856e7443e51.tar.gz
First pass removing Py2 cross-compatibility features
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 9de1761..0dae3ce 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ setup(# Distribution meta-data
download_url = "https://pypi.org/project/pyparsing/",
license = "MIT License",
py_modules = modules,
- python_requires='>=2.6, !=3.0.*, !=3.1.*, !=3.2.*',
+ python_requires='>=3.5',
test_suite="unitTests.suite",
classifiers=[
'Development Status :: 5 - Production/Stable',
@@ -26,12 +26,7 @@ setup(# Distribution meta-data
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'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',