Skip to content

chore: Upgraded Google API Core, Cloud Firestore, and Cloud Storage dependencies #897

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

Open
wants to merge 2 commits into
base: v7
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ pytest-asyncio >= 0.26.0
pytest-mock >= 3.6.1
respx == 0.22.0

cachecontrol >= 0.12.14
google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != 'PyPy'
google-cloud-firestore >= 2.19.0; platform.python_implementation != 'PyPy'
google-cloud-storage >= 1.37.1
pyjwt[crypto] >= 2.5.0
cachecontrol >= 0.14.3
google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != 'PyPy'
google-cloud-firestore >= 2.21.0; platform.python_implementation != 'PyPy'
google-cloud-storage >= 3.1.1
pyjwt[crypto] >= 2.10.1
httpx[http2] == 0.28.1
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


(major, minor) = (sys.version_info.major, sys.version_info.minor)
if major != 3 or minor < 7:
if major != 3 or minor < 9:
print('firebase_admin requires python >= 3.9', file=sys.stderr)
sys.exit(1)

Expand All @@ -37,11 +37,11 @@
long_description = ('The Firebase Admin Python SDK enables server-side (backend) Python developers '
'to integrate Firebase into their services and applications.')
install_requires = [
'cachecontrol>=0.12.14',
'google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != "PyPy"',
'google-cloud-firestore>=2.19.0; platform.python_implementation != "PyPy"',
'google-cloud-storage>=1.37.1',
'pyjwt[crypto] >= 2.5.0',
'cachecontrol>=0.14.3',
'google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != "PyPy"',
'google-cloud-firestore>=2.21.0; platform.python_implementation != "PyPy"',
'google-cloud-storage>=3.1.1',
'pyjwt[crypto] >= 2.10.1',
'httpx[http2] == 0.28.1',
]

Expand Down