commit | a9234423cb2b69068fc0d30a5a0ee86a599ab8b7 | [log] [tgz] |
---|---|---|
author | Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> | Mon May 24 18:16:01 2021 -0600 |
committer | GitHub <noreply@github.com> | Tue May 25 00:16:01 2021 +0000 |
tree | f2e990dc5db36137534064b62cd55aaaf2bbc816 | |
parent | 27714c466ad96b6b64c6a0074df1aa6cedf8a9d4 [diff] [blame] |
fix(dependencies): add urllib3 and requests to aiohttp extra (#755) Fixes #707.
diff --git a/setup.py b/setup.py index ef723f8..f2fd4e5 100644 --- a/setup.py +++ b/setup.py
@@ -31,7 +31,11 @@ ) extras = { - "aiohttp": "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'", + "aiohttp": [ + "aiohttp >= 3.6.2, < 4.0.0dev; python_version>='3.6'", + "requests >= 2.18.0, < 3.0.0dev", + "urllib3 >= 1.0.0, <2.0.0dev", + ], "pyopenssl": "pyopenssl>=20.0.0", "reauth": "pyu2f>=0.1.5", }