Skip to content

Upgraded Cloud Firestore and Cloud Storage dependencies #325

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

Merged
merged 1 commit into from
Aug 26, 2019
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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,15 @@ pip install firebase-admin

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


## Supported Python Versions

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


## Documentation
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ pytest-localserver >= 0.4.1
tox >= 3.6.0

cachecontrol >= 0.12.4
google-api-core[grpc] >= 1.7.0, < 2.0.0dev; platform.python_implementation != 'PyPy'
google-api-core[grpc] >= 1.14.0, < 2.0.0dev; platform.python_implementation != 'PyPy'
google-api-python-client >= 1.7.8
google-cloud-firestore >= 0.31.0; platform.python_implementation != 'PyPy'
google-cloud-storage >= 1.13.0
google-cloud-firestore >= 1.4.0; platform.python_implementation != 'PyPy'
google-cloud-storage >= 1.18.0
six >= 1.6.1
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
'to integrate Firebase into their services and applications.')
install_requires = [
'cachecontrol>=0.12.4',
'google-api-core[grpc] >= 1.7.0, < 2.0.0dev; platform.python_implementation != "PyPy"',
'google-api-core[grpc] >= 1.14.0, < 2.0.0dev; platform.python_implementation != "PyPy"',
'google-api-python-client >= 1.7.8',
'google-cloud-firestore>=0.31.0; platform.python_implementation != "PyPy"',
'google-cloud-storage>=1.13.0',
'google-cloud-firestore>=1.4.0; platform.python_implementation != "PyPy"',
'google-cloud-storage>=1.18.0',
'six>=1.6.1'
]

Expand Down