Skip to content

Commit 4ba9f56

Browse files
committed
fix: add PyJWT[crypto] extra for RS256 signing support
The OAuth manager uses RS256 (via PyJWT), which requires the cryptography package. Without the [crypto] extra, PyJWT can't find the algorithm and all OAuth tests fail.
1 parent 3d7f33b commit 4ba9f56

2 files changed

Lines changed: 380 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dependencies = [
2828
"requests~=2.7",
2929
"backoff~=2.1",
3030
"python-dateutil~=2.2",
31-
"PyJWT~=2.12",
31+
"PyJWT[crypto]~=2.12",
3232
]
3333

3434
[project.urls]

0 commit comments

Comments
 (0)