From def49e5abda1b588800ccf9e2b2ce7520cd7b73a Mon Sep 17 00:00:00 2001 From: Lennart Weller Date: Thu, 6 Jun 2024 17:29:07 +0000 Subject: [PATCH] obsolete dependency --- aiocloudweather/proxy.py | 2 -- setup.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) 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"] },