From 409c865175bf8f103bf5633331e8a1d77a446814 Mon Sep 17 00:00:00 2001 From: Konstantin Ryabitsev Date: Fri, 17 Jun 2022 14:13:21 -0400 Subject: Prepare for 0.9.0 release 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 --- b4/__init__.py | 2 +- requirements.txt | 8 ++++---- setup.py | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/b4/__init__.py b/b4/__init__.py index bc4dd36..ebd4f2e 100644 --- a/b4/__init__.py +++ b/b4/__init__.py @@ -44,7 +44,7 @@ try: except ModuleNotFoundError: can_patatt = False -__VERSION__ = '0.9-dev' +__VERSION__ = '0.9.0' def _dkim_log_filter(record): diff --git a/requirements.txt b/requirements.txt index 6540b12..166914b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -requests~=2.25.0 +requests>=2.24,<3.0 # These are optional, needed for attestation features -dnspython~=2.1.0 -dkimpy~=1.0.5 -patatt>=0.4,<2.0 +dnspython>=2.1,<3.0 +dkimpy>=1.0,<2.0 +patatt>=0.5,<2.0 diff --git a/setup.py b/setup.py index 23e75a3..1565f30 100644 --- a/setup.py +++ b/setup.py @@ -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={ -- cgit v1.2.3