File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ pytest-asyncio >= 0.26.0
7
7
pytest-mock >= 3.6.1
8
8
respx == 0.22.0
9
9
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
15
15
httpx [http2 ] == 0.28.1
Original file line number Diff line number Diff line change 22
22
23
23
24
24
(major , minor ) = (sys .version_info .major , sys .version_info .minor )
25
- if major != 3 or minor < 7 :
25
+ if major != 3 or minor < 9 :
26
26
print ('firebase_admin requires python >= 3.9' , file = sys .stderr )
27
27
sys .exit (1 )
28
28
37
37
long_description = ('The Firebase Admin Python SDK enables server-side (backend) Python developers '
38
38
'to integrate Firebase into their services and applications.' )
39
39
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 ' ,
45
45
'httpx[http2] == 0.28.1' ,
46
46
]
47
47
You can’t perform that action at this time.
0 commit comments