diff options
author | Paul McGuire <ptmcg@austin.rr.com> | 2019-08-05 00:21:52 -0500 |
---|---|---|
committer | Paul McGuire <ptmcg@austin.rr.com> | 2019-08-05 00:21:52 -0500 |
commit | c45813fdaa1254b1d28a371f357a7856e7443e51 (patch) | |
tree | 980ce2e2593a72b99e7fc1ffe3612bb5d671aec8 /setup.py | |
parent | 897e536d2131c6d07cbc355edb0ed744213c6997 (diff) | |
download | pyparsing-git-c45813fdaa1254b1d28a371f357a7856e7443e51.tar.gz |
First pass removing Py2 cross-compatibility features
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -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', |