switch to pyjwt, python-jose is not secure

This commit is contained in:
Jannis Gebauer
2017-03-27 15:20:24 +02:00
parent 2525515b09
commit d447eb13b9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ import pickle
import time
import sys
from httplib import HTTPSConnection
from jose import jwt
import jwt
from Requester import Requester, json
import AuthenticatedUser
+1 -1
View File
@@ -95,6 +95,6 @@ if __name__ == "__main__":
test_suite="github.tests.AllTests",
use_2to3=True,
install_requires=[
"python-jose"
"pyjwt"
]
)