From 051afa9c4815938dbbdca9feb339b6a5db11331a Mon Sep 17 00:00:00 2001 From: "Emmanuel O. Adegbite" Date: Wed, 7 Aug 2024 21:07:33 +0100 Subject: [PATCH] adjust aiohttp pinning --- pyfcm/__meta__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfcm/__meta__.py b/pyfcm/__meta__.py index 0f2680a..2560875 100644 --- a/pyfcm/__meta__.py +++ b/pyfcm/__meta__.py @@ -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.5" +__version__ = "2.0.6" __author__ = "Emmanuel Adegbite" __email__ = "olucurious@gmail.com" diff --git a/requirements.txt b/requirements.txt index ef4d0df..51b2945 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp>=3.6.2 +aiohttp>=3.8.6 cachetools==5.3.3 google-auth==2.22.0 pyasn1==0.6.0 diff --git a/setup.py b/setup.py index 294940d..80a33eb 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read(fname): "requests", "urllib3>=1.26.0", "google-auth>=2.22.0", - "aiohttp==3.8.6", + "aiohttp>=3.8.6", ] tests_require = ["pytest"]