From 9d3e223009e1a370e5ae504bfc5ef4ce297bd786 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 13 Feb 2023 13:01:49 +0000 Subject: [PATCH] fix(deps): add aiohttp to install_requires Otherwise, after running pip install .: >>> import raincloudy Traceback (most recent call last): File "", line 1, in File "/raincloudy/raincloudy/__init__.py", line 6, in from .aio.core import RainCloudy as RainCloudyAsync # noqa: F401 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/raincloudy/raincloudy/aio/core.py", line 10, in from aiohttp.client import ClientSession ModuleNotFoundError: No module named 'aiohttp' --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bfbf5a3..78d59d2 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def readme(): url="https://github.com/tchellomello/raincloudy", license="Apache License 2.0", include_package_data=True, - install_requires=["requests>=2.0", "beautifulsoup4", "urllib3>=1.22", "html5lib==1.1"], + install_requires=["aiohttp", "requests>=2.0", "beautifulsoup4", "urllib3>=1.22", "html5lib==1.1"], test_suite="tests", keywords=[ "garden",