diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-06-17 14:13:21 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2022-06-17 14:23:01 -0400 |
commit | 409c865175bf8f103bf5633331e8a1d77a446814 (patch) | |
tree | 04013789b1d0511f527e569a299318fd8bc10a35 /setup.py | |
parent | adfdec25bae8e3f163f934111981b2e917da199c (diff) | |
download | b4-0.9.0.tar.gz (sig) |
Prepare for 0.9.0 releasev0.9.0
It is time to roll out 0.9.0 for wider use. Update requirements to the
latest supported and tested versions.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -41,10 +41,10 @@ setup( data_files = [('share/man/man5', ['man/b4.5'])], keywords=['git', 'lore.kernel.org', 'patches'], install_requires=[ - 'requests~=2.24', - 'dkimpy~=1.0', - 'dnspython~=2.0', - 'patatt>=0.4,<2.0', + 'requests>=2.24,<3.0', + 'dnspython>=2.0,<3.0', + 'dkimpy>=1.0,<2.0', + 'patatt>=0.5,<2.0', ], python_requires='>=3.6', entry_points={ |