diff --git a/README.md b/README.md index 793b2c16..e5d3e58e 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ Anyways, feel free to contribute via donations! ## Changelog #### 0.4.2.1 - Fixed "None error" when calling limiter api +- Updated aiohttp dependency to 3.7.4 due to security issues
Older diff --git a/requirements.txt b/requirements.txt index 9797e517..f6c2c436 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ paho-mqtt>=1.5.0 requests>=2.19.1 retrying>=1.3.3 coverage==4.5.4 -aiohttp[speedups]>=3.6.1 +aiohttp[speedups]>=3.7.4.post0 pytest-aiohttp proxy.py pysocks \ No newline at end of file diff --git a/setup.py b/setup.py index 0d277ddc..253ea395 100644 --- a/setup.py +++ b/setup.py @@ -39,10 +39,15 @@ 'Tracker': 'https://github.com/albertogeniola/MerossIot/issues', }, install_requires=[ - 'paho-mqtt>=1.3.1', + 'retrying>=1.3.3', + 'paho-mqtt>=1.5.0', 'requests>=2.19.1', 'retrying>=1.3.3', - 'aiohttp[speedups]==3.6.2' + 'aiohttp[speedups]>=3.7.4.post0', + #'coverage==4.5.4', + #'pytest-aiohttp', + #'proxy.py', + #'pysocks' ], python_requires='>=3.7', test_suite='tests',