summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorBastian Venthur <bastian.venthur@flixbus.com>2021-08-18 12:27:08 +0200
committerGitHub <noreply@github.com>2021-08-18 12:27:08 +0200
commit5e9e1af94ef810336360ff83872f36ae61465dbc (patch)
tree04a7d1abf131e8d4814683494ff2939f97b04ea1 /setup.py
parent4b9a12c9e30b69fc8c0fc05b126950ef1a64ae6c (diff)
downloadfeedgenerator-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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 8ba6981..67b9a5d 100644
--- a/setup.py
+++ b/setup.py
@@ -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,