diff options
| author | Emmanuel Magnier <Amli@users.noreply.github.com> | 2021-04-02 11:40:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-02 11:40:36 +0200 |
| commit | a89ce8a18dee50a986d90abdc745f89b8d7eb3de (patch) | |
| tree | c33a5001f0ad4ac23b1daed73f8ff4e639c629f8 | |
| parent | a615c2ae5fe17c8e1f1a19247ed003986343734a (diff) | |
| download | python-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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', |
