Skip to content

Commit f8b3275

Browse files
committed
enable Python 3.6.9
1 parent 15cdc60 commit f8b3275

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pyfcm/baseapi.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from __future__ import annotations
1+
#from __future__ import annotations
22

33
import json
44
import os
@@ -28,13 +28,13 @@ class BaseAPI(object):
2828

2929
def __init__(
3030
self,
31-
service_account_file: str | None,
31+
service_account_file: str,
3232
project_id: str,
3333
credentials=None,
3434
proxy_dict=None,
3535
env=None,
3636
json_encoder=None,
37-
adapter=None,
37+
adapter=None
3838
):
3939
"""
4040
Override existing init function to give ability to use v1 endpoints of Firebase Cloud Messaging API

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def read(fname):
1515
return open(os.path.join(os.path.dirname(__file__), fname)).read()
1616

1717

18-
install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.29.0"]
18+
install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.22.0", "aiohttp==3.8.6"]
1919
tests_require = ["pytest"]
2020

2121
# We can't get the values using `from pyfcm import __meta__`, because this would import

0 commit comments

Comments
 (0)