From 6c855ba36c1e7064587b8639c9c72cc4ae9ad470 Mon Sep 17 00:00:00 2001 From: Michael Grosse Huelsewiesche Date: Fri, 27 Feb 2026 13:20:52 -0500 Subject: [PATCH] fix: widen PyJWT version constraint to allow 2.11+ Changes PyJWT~=2.10.1 (>=2.10.1, <2.11) to PyJWT~=2.10 (>=2.10, <3) to match the pattern used by other dependencies in setup.py. Fixes #522 Co-Authored-By: Claude Opus 4.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0443d7b..0b1ce5f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ "requests~=2.7", "backoff~=2.1", "python-dateutil~=2.2", - "PyJWT~=2.10.1" + "PyJWT~=2.10" ] tests_require = [