Skip to content

Commit 8bf4118

Browse files
authored
Upgraded Cloud Firestore and Cloud Storage dependencies (#325)
1 parent ff28261 commit 8bf4118

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ pip install firebase-admin
3636

3737
Please refer to the [CONTRIBUTING page](./CONTRIBUTING.md) for more information
3838
about how you can contribute to this project. We welcome bug reports, feature
39-
requests, code review feedback, and also pull requests.
39+
requests, code review feedback, and also pull requests.
4040

4141

4242
## Supported Python Versions
4343

44-
We support Python 2.7 and Python 3.3+. Firebase Admin Python SDK is also tested
45-
on PyPy and [Google App Engine](https://cloud.google.com/appengine/) environments.
44+
We currently support Python 2.7 and Python 3.4+. However, Python 2.7 support is
45+
being phased out, and the developers are advised to use latest Python 3.
46+
Firebase Admin Python SDK is also tested on PyPy and
47+
[Google App Engine](https://cloud.google.com/appengine/) environments.
4648

4749

4850
## Documentation

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ pytest-localserver >= 0.4.1
55
tox >= 3.6.0
66

77
cachecontrol >= 0.12.4
8-
google-api-core[grpc] >= 1.7.0, < 2.0.0dev; platform.python_implementation != 'PyPy'
8+
google-api-core[grpc] >= 1.14.0, < 2.0.0dev; platform.python_implementation != 'PyPy'
99
google-api-python-client >= 1.7.8
10-
google-cloud-firestore >= 0.31.0; platform.python_implementation != 'PyPy'
11-
google-cloud-storage >= 1.13.0
10+
google-cloud-firestore >= 1.4.0; platform.python_implementation != 'PyPy'
11+
google-cloud-storage >= 1.18.0
1212
six >= 1.6.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@
3838
'to integrate Firebase into their services and applications.')
3939
install_requires = [
4040
'cachecontrol>=0.12.4',
41-
'google-api-core[grpc] >= 1.7.0, < 2.0.0dev; platform.python_implementation != "PyPy"',
41+
'google-api-core[grpc] >= 1.14.0, < 2.0.0dev; platform.python_implementation != "PyPy"',
4242
'google-api-python-client >= 1.7.8',
43-
'google-cloud-firestore>=0.31.0; platform.python_implementation != "PyPy"',
44-
'google-cloud-storage>=1.13.0',
43+
'google-cloud-firestore>=1.4.0; platform.python_implementation != "PyPy"',
44+
'google-cloud-storage>=1.18.0',
4545
'six>=1.6.1'
4646
]
4747

0 commit comments

Comments
 (0)