Skip to content

Commit

Permalink
- Fixed "None error" when calling limiter api
Browse files Browse the repository at this point in the history
- Updated aiohttp dependency to 3.7.4 due to security issues
  • Loading branch information
albertogeniola committed Aug 10, 2021
1 parent 28693ad commit 97b5a99
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

<details>
<summary>Older</summary>
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 97b5a99

Please sign in to comment.