diff --git a/aiocloudweather/proxy.py b/aiocloudweather/proxy.py index 9e1f1d6..3c2ed94 100644 --- a/aiocloudweather/proxy.py +++ b/aiocloudweather/proxy.py @@ -5,8 +5,6 @@ from urllib.parse import quote from aiohttp.resolver import AsyncResolver -import requests - class DataSink(Enum): """Data sinks for the CloudWeather API.""" diff --git a/setup.py b/setup.py index c30e339..2fffaa5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ packages=find_packages(exclude=["tests.*", "tests"]), package_data={"aiocoudweather": ["py.typed"]}, python_requires=">=3.12", - install_requires=["aiohttp>3", "requests>2", "aiodns>3"], + install_requires=["aiohttp>3", "aiodns>3"], entry_points={ "console_scripts": ["cloudweather-testserver = aiocloudweather.__main__:main"] },