File tree 4 files changed +12
-18
lines changed
4 files changed +12
-18
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ - [ changed] Taking a direct dependency on ` google-api-core[grpc] ` in order to
4
+ resolve some long standing Firestore installation problems.
3
5
- ` messaging.WebpushConfig ` class now supports configuring additional
4
- FCM options for the features supported by the web SDK. A new
6
+ [ added ] FCM options for the features supported by the web SDK. A new
5
7
` messaging.WebpushFcmOptions ` type has been introduced for this
6
8
purpose.
7
- - ` messaging.Aps ` class now supports configuring a critical sound. A new
8
- ` messaging.CriticalSound ` class has been introduced for this purpose.
9
+ - [ added ] ` messaging.Aps ` class now supports configuring a critical sound. A
10
+ new ` messaging.CriticalSound ` class has been introduced for this purpose.
9
11
- [ changed] Dropped support for Python 3.3.
10
12
11
13
# v2.14.0
Original file line number Diff line number Diff line change @@ -2,11 +2,10 @@ pylint == 1.6.4
2
2
pytest >= 3.0.6
3
3
pytest-cov >= 2.4.0
4
4
pytest-localserver >= 0.4.1
5
- tox >= 2 .6.0
5
+ tox >= 3 .6.0
6
6
7
7
cachecontrol >= 0.12.4
8
- google-auth >= 1.3.0
9
- google-cloud-firestore >= 0.27.0 ; platform.python_implementation != 'PyPy'
10
- google-cloud-storage >= 1.2.0
11
- requests >= 2.13.0
8
+ google-api-core [grpc ] >= 1.7.0 , < 2.0.0dev ; platform.python_implementation != 'PyPy'
9
+ google-cloud-firestore >= 0.31.0 ; platform.python_implementation != 'PyPy'
10
+ google-cloud-storage >= 1.13.0
12
11
six >= 1.6.1
Original file line number Diff line number Diff line change 39
39
'to integrate Firebase into their services and applications.' )
40
40
install_requires = [
41
41
'cachecontrol>=0.12.4' ,
42
- 'google-auth>=1.3.0' ,
43
- 'google-cloud-firestore>=0.27.0' ,
44
- 'google-cloud-storage>=1.2.0' ,
45
- 'requests>=2.13.0' ,
42
+ 'google-api-core[grpc] >= 1.7.0, < 2.0.0dev; platform.python_implementation != "PyPy"' ,
43
+ 'google-cloud-firestore>=0.31.0; platform.python_implementation != "PyPy"' ,
44
+ 'google-cloud-storage>=1.13.0' ,
46
45
'six>=1.6.1'
47
46
]
48
47
Original file line number Diff line number Diff line change @@ -11,12 +11,6 @@ commands = pytest
11
11
deps =
12
12
pytest
13
13
pytest-localserver
14
- cachecontrol
15
- google-auth
16
- google-cloud-storage
17
- google-cloud-firestore
18
- requests
19
- six
20
14
21
15
[coverbase]
22
16
basepython = python2.7
You can’t perform that action at this time.
0 commit comments