diff options
| author | Bastian Venthur <bastian.venthur@flixbus.com> | 2021-08-18 12:27:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-18 12:27:08 +0200 |
| commit | 5e9e1af94ef810336360ff83872f36ae61465dbc (patch) | |
| tree | 04a7d1abf131e8d4814683494ff2939f97b04ea1 /setup.py | |
| parent | 4b9a12c9e30b69fc8c0fc05b126950ef1a64ae6c (diff) | |
| download | feedgenerator-5e9e1af94ef810336360ff83872f36ae61465dbc.tar.gz | |
Remove Python 2 (#27)
* removed __future__ imports and explicit encodings
* removed six dependency and code
* fixed py2/3 specific imports
* removed python2 specific code
* don't mention unittest2 anymore
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,7 +39,7 @@ VERSION = '1.9.2' TEST_SUITE = 'tests_feedgenerator' -REQUIRES = ['pytz >= 0a', 'six'] +REQUIRES = ['pytz >= 0a'] setup( name=NAME, @@ -47,6 +47,7 @@ setup( packages=PACKAGES, test_suite=TEST_SUITE, install_requires=REQUIRES, + python_requires='>=3.6', # metadata for upload to PyPI author=AUTHOR, author_email=AUTHOR_EMAIL, |
