From e8bb2526c243d06603173f08a23e6e7bd562f2d0 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Tue, 15 Jul 2025 18:35:35 +0900 Subject: [PATCH] Remove six It was added due to the implicit dependency by jwcrypto, which was fixed in v0.9.0[1]. The library was even removed in jwcrypto v1.0.0[2] and is useless now. [1] https://github.com/latchset/jwcrypto/commit/08cae6a43ef39a2a8f6148e [2] https://github.com/latchset/jwcrypto/commit/1f5e7517142baf5eed23578 --- setup.py | 2 +- test-requirements.txt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 4e20f72..2a10dcf 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( install_requires=[ 'numpy', 'requests', - 'jwcrypto', + 'jwcrypto>=0.9.0', 'redis', ], zip_safe=False, diff --git a/test-requirements.txt b/test-requirements.txt index 18a823c..5022d0f 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1,3 +1,2 @@ nose2 -six redis