aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonstantin Ryabitsev <konstantin@linuxfoundation.org>2022-09-16 13:34:04 -0400
committerKonstantin Ryabitsev <konstantin@linuxfoundation.org>2022-09-16 13:34:04 -0400
commitaa0999833b83da5d620f831d0e0198b1117d8d35 (patch)
tree26b4faeced3006d61e978634766803affdc2ef32
parentc07e23d39cbc8899c1adeac62aec637d42490a7e (diff)
downloadb4-aa0999833b83da5d620f831d0e0198b1117d8d35.tar.gz
setup: update install_requires
Update install_requires to match the latest supported versions and pull in git-filter-repo on default install. Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r--setup.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 458b135..333f549 100644
--- a/setup.py
+++ b/setup.py
@@ -38,13 +38,14 @@ setup(
license='GPLv2+',
long_description=read('man/b4.5.rst'),
long_description_content_type='text/x-rst',
- data_files = [('share/man/man5', ['man/b4.5'])],
- keywords=['git', 'lore.kernel.org', 'patches'],
+ data_files=[('share/man/man5', ['man/b4.5'])],
+ keywords=['git', 'public-inbox', 'lore.kernel.org', 'patches'],
install_requires=[
'requests>=2.24,<3.0',
- 'dnspython>=2.0,<3.0',
+ 'dnspython>=2.1,<3.0',
'dkimpy>=1.0,<2.0',
- 'patatt>=0.5,<2.0',
+ 'patatt>=0.6,<2.0',
+ 'git-filter-repo>=2.30,<3.0',
],
python_requires='>=3.8',
entry_points={