Update pyjwkest to version 1.3.0.

This commit is contained in:
Ignacio Fiorentino 2016-10-03 12:54:54 -03:00
parent 9b9ea56449
commit 6ed2c200a7
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@ from datetime import timedelta
import time import time
import uuid import uuid
from Crypto.PublicKey.RSA import importKey from Cryptodome.PublicKey.RSA import importKey
from django.utils import timezone from django.utils import timezone
from jwkest.jwk import RSAKey as jwk_RSAKey from jwkest.jwk import RSAKey as jwk_RSAKey
from jwkest.jwk import SYMKey from jwkest.jwk import SYMKey

View file

@ -1,6 +1,6 @@
import os import os
from Crypto.PublicKey import RSA from Cryptodome.PublicKey import RSA
from django.core.management.base import BaseCommand from django.core.management.base import BaseCommand
from oidc_provider import settings from oidc_provider import settings

View file

@ -1,6 +1,6 @@
import logging import logging
from Crypto.PublicKey import RSA from Cryptodome.PublicKey import RSA
from django.contrib.auth.views import redirect_to_login, logout from django.contrib.auth.views import redirect_to_login, logout
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
from django.http import JsonResponse from django.http import JsonResponse

View file

@ -36,11 +36,11 @@ setup(
], ],
test_suite='runtests.runtests', test_suite='runtests.runtests',
tests_require=[ tests_require=[
'pyjwkest==1.1.0', 'pyjwkest==1.3.0',
'mock==2.0.0', 'mock==2.0.0',
], ],
install_requires=[ install_requires=[
'pyjwkest==1.1.0', 'pyjwkest==1.3.0',
], ],
) )