Skip to content

Commit 7f6e9f1

Browse files
authored
chore: Upgraded Google API Core, Cloud Firestore, and Cloud Storage dependencies (#897)
* chore: Bump dependencies * fix: Also update setup.py
1 parent c9dce80 commit 7f6e9f1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ pytest-asyncio >= 0.26.0
77
pytest-mock >= 3.6.1
88
respx == 0.22.0
99

10-
cachecontrol >= 0.12.14
11-
google-api-core[grpc] >= 1.22.1, < 3.0.0dev; platform.python_implementation != 'PyPy'
12-
google-cloud-firestore >= 2.19.0; platform.python_implementation != 'PyPy'
13-
google-cloud-storage >= 1.37.1
14-
pyjwt[crypto] >= 2.5.0
10+
cachecontrol >= 0.14.3
11+
google-api-core[grpc] >= 2.25.1, < 3.0.0dev; platform.python_implementation != 'PyPy'
12+
google-cloud-firestore >= 2.21.0; platform.python_implementation != 'PyPy'
13+
google-cloud-storage >= 3.1.1
14+
pyjwt[crypto] >= 2.10.1
1515
httpx[http2] == 0.28.1

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

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

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

0 commit comments

Comments
 (0)