diff options
author | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2021-05-21 14:51:40 -0400 |
---|---|---|
committer | Konstantin Ryabitsev <konstantin@linuxfoundation.org> | 2021-05-21 14:51:40 -0400 |
commit | be580856dd137b25eb17bf37118eb62e09452ef3 (patch) | |
tree | 8375b1d7e86ff15ecceca2981c65971094151211 | |
parent | aafc61a2009c1b5c45dcdd6326e9d4010ed7cba4 (diff) | |
download | b4-be580856dd137b25eb17bf37118eb62e09452ef3.tar.gz |
Bump patatt requirement to 0.4
We only really need 0.2, but 0.4 implements DKIM slightly more properly.
Signed-off-by: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
-rw-r--r-- | requirements.txt | 2 | ||||
-rw-r--r-- | setup.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/requirements.txt b/requirements.txt index a9a4be4..6540b12 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ requests~=2.25.0 # These are optional, needed for attestation features dnspython~=2.1.0 dkimpy~=1.0.5 -patatt>=0.2.0,<2.0 +patatt>=0.4,<2.0 @@ -28,7 +28,7 @@ setup( version=find_version('b4/__init__.py'), url='https://git.kernel.org/pub/scm/utils/b4/b4.git/tree/README.rst', project_urls={ - 'Community': 'https://linux.kernel.org/g/tools' + 'Community': 'https://lore.kernel.org/tools' }, name=NAME, description='A tool to work with public-inbox and patch archives', @@ -44,6 +44,7 @@ setup( 'requests~=2.24', 'dkimpy~=1.0', 'dnspython~=2.0', + 'patatt>=0.4,<2.0', ], python_requires='>=3.6', entry_points={ |