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 | |
parent | adfdec25bae8e3f163f934111981b2e917da199c (diff) | |
download | b4-409c865175bf8f103bf5633331e8a1d77a446814.tar.gz |
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>
-rw-r--r-- | b4/__init__.py | 2 | ||||
-rw-r--r-- | requirements.txt | 8 | ||||
-rw-r--r-- | 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 @@ -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={ |