Skip to content

Commit

Permalink
replace pycrypto with pycryptodome
Browse files Browse the repository at this point in the history
  • Loading branch information
thisbejim committed Nov 6, 2016
1 parent c492928 commit 56aaa1d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyrebase/pyrebase.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from requests_toolbelt.adapters import appengine

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


Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
keywords='Firebase',
packages=find_packages(exclude=['tests']),
install_requires=[
'requests==2.11.1', 'sseclient', 'gcloud==0.17.0',
'oauth2client==3.0.0', 'requests_toolbelt==0.7.0', 'python_jwt>=2.0.1',
'pycrypto==2.6.1'
'requests==2.11.1',
'gcloud==0.17.0',
'oauth2client==3.0.0',
'requests_toolbelt==0.7.0',
'python_jwt==2.0.1',
'pycryptodome==3.4.3'
]
)

0 comments on commit 56aaa1d

Please sign in to comment.