From 023138f6e683a3801917234659162caf221289a1 Mon Sep 17 00:00:00 2001 From: nhorvath Date: Fri, 18 Dec 2020 09:23:01 -0500 Subject: [PATCH] update version requirements and create new version --- requirements.txt | 6 +++--- setup.py | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/requirements.txt b/requirements.txt index 11fad01..aa6e3a2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ requests>=2.19.1 requests_toolbelt>=0.7.1 -gcloud==0.18.3 -oauth2client==4.1.2 -python-jwt==2.0.1 +gcloud>=0.18.3 +oauth2client>=4.1.2 +python-jwt>=2.0.1 pycryptodome>=3.6.4 \ No newline at end of file diff --git a/setup.py b/setup.py index 323ec72..5d69c38 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='Pyrebase4', - version='4.4.1', + version='4.4.2', url='https://github.com/nhorvath/Pyrebase4', description='A simple python wrapper for the Firebase API with current deps', author='nhorvath', @@ -18,9 +18,9 @@ install_requires=[ 'requests>=2.19.1', 'requests_toolbelt>=0.7.1', - 'gcloud==0.18.3', - 'oauth2client==4.1.2', - 'python-jwt==2.0.1', + 'gcloud>=0.18.3', + 'oauth2client>=4.1.2', + 'python-jwt>=2.0.1', 'pycryptodome>=3.6.4' ] )