From 954f5f653b5b3e312456a413b0810cdde2080513 Mon Sep 17 00:00:00 2001 From: Rene Dohmen Date: Wed, 9 May 2018 10:29:24 +0200 Subject: [PATCH] Unpinned the request and requests-toolbelt depdencies so library works ok even with pip 10 --- requirements.txt | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index b7c4cfc..10ef9aa 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -requests==2.11.1 +requests>=2.11.1 gcloud==0.17.0 oauth2client==3.0.0 -requests-toolbelt==0.7.0 +requests-toolbelt>=0.7.0 python-jwt==2.0.1 -pycrypto==2.6.1 \ No newline at end of file +pycrypto==2.6.1 diff --git a/setup.py b/setup.py index 95aef0e..aea4bc1 100644 --- a/setup.py +++ b/setup.py @@ -16,10 +16,10 @@ keywords='Firebase', packages=find_packages(exclude=['tests']), install_requires=[ - 'requests==2.11.1', + 'requests>=2.11.1', 'gcloud==0.17.0', 'oauth2client==3.0.0', - 'requests_toolbelt==0.7.0', + 'requests_toolbelt>=0.7.0', 'python_jwt==2.0.1', 'pycryptodome==3.4.3' ]