Skip to content
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
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