Skip to content

Commit

Permalink
update install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
olucurious committed Jun 18, 2024
1 parent d47eb42 commit c7ac0a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyfcm/__meta__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__summary__ = "Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)"
__url__ = "https://github.com/olucurious/pyfcm"

__version__ = "2.0.0"
__version__ = "2.0.1"

__author__ = "Emmanuel Adegbite"
__email__ = "[email protected]"
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


install_requires = [
"requests",
"urllib3>=1.26.0",
]
install_requires = ["requests", "urllib3>=1.26.0", "google-auth>=2.29.0"]

This comment has been minimized.

Copy link
@saikreddy

saikreddy Jun 19, 2024

@olucurious, Python 3.6 does not support "google-auth>=2.29.0". However, my server is running Python 3.6 and I cannot upgrade it. Consequently, pyfcm2.0.2 version is not supported for Python 3.6. Is it possible to allow the use of google-auth versions >= 2.22.0 instead?

tests_require = ["pytest"]

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

0 comments on commit c7ac0a8

Please sign in to comment.