Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update jwt version #93

Merged
merged 2 commits into from
Nov 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyrebase/pyrebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from requests.packages.urllib3.contrib.appengine import is_appengine_sandbox
from requests_toolbelt.adapters import appengine

import jwt
import python_jwt as jwt
import Crypto.PublicKey.RSA as RSA
import datetime

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ requests==2.11.1
gcloud==0.17.0
oauth2client==3.0.0
requests-toolbelt==0.7.0
python-jwt==1.2.1
python-jwt==2.0.1
pycrypto==2.6.1
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='Pyrebase',
version='3.0.18',
version='3.0.19',
url='https://github.com/thisbejim/Pyrebase',
description='A simple python wrapper for the Firebase API',
author='James Childs-Maidment',
Expand All @@ -16,8 +16,8 @@
keywords='Firebase',
packages=find_packages(exclude=['tests']),
install_requires=[
'requests', 'sseclient', 'gcloud',
'oauth2client', 'requests_toolbelt', 'python_jwt',
'pycrypto'
'requests==2.11.1', 'sseclient', 'gcloud==0.17.0',
Dharshan2004 marked this conversation as resolved.
Show resolved Hide resolved
'oauth2client==3.0.0', 'requests_toolbelt==0.7.0', 'python_jwt>=2.0.1',
Dharshan2004 marked this conversation as resolved.
Show resolved Hide resolved
'pycrypto==2.6.1'
]
)