summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuel Magnier <Amli@users.noreply.github.com>2021-04-02 11:40:36 +0200
committerGitHub <noreply@github.com>2021-04-02 11:40:36 +0200
commita89ce8a18dee50a986d90abdc745f89b8d7eb3de (patch)
treec33a5001f0ad4ac23b1daed73f8ff4e639c629f8
parenta615c2ae5fe17c8e1f1a19247ed003986343734a (diff)
downloadpython-decorator-git-a89ce8a18dee50a986d90abdc745f89b8d7eb3de.tar.gz
Fix python version in setup
update both python_requires and classifiers to match the actually supported version of python
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 4eeca6e..de78244 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ if __name__ == '__main__':
py_modules=['decorator'],
keywords="decorators generic utility",
platforms=["All"],
- python_requires='>=2.6, !=3.0.*, !=3.1.*',
+ python_requires='>=3.5',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',