try to fix jwt import error

This commit is contained in:
James Woglom
2024-10-02 00:45:39 -04:00
parent 5b938c010d
commit 4f52927d2f
4 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ pysocks = "*"
urllib3 = "==1.26.6"
requests = {extras = ["socks"], version = "==2.31.0"}
requests-oidc = "*"
pyjwt = "==2.8.0"
PyJWT = "==2.8.0"
cryptography = "*"
dataclasses-json = "*"
cffi = ">=1.15.1"
Generated
+1 -1
View File
@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
"sha256": "6b5baa4e659a598014fa6602acb241be0ab59a63126a132652c305792a1a3752"
"sha256": "1d28c5104c37e390b88704d1453eec15e5c6df241ca85f82a88973f8aee2d1d1"
},
"pipfile-spec": 6,
"requires": {},
+1 -1
View File
@@ -30,7 +30,7 @@ install_requires =
urllib3
requests
requests-oidc
pyjwt
PyJWT
cryptography
dataclasses-json
cffi
+2
View File
@@ -5,6 +5,8 @@ import argparse
import logging
import pkg_resources
import typing
# Required for cryptography lib in python 3.7
if sys.version_info < (3, 8):
import typing_extensions
typing.Protocol = typing_extensions.Protocol