From d7bf8a7ac3938c544612effe9a77e17f58242674 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 1 Dec 2021 19:45:16 +0100 Subject: [PATCH] Upgrade aiohttp to 3.8.1 (#60778) --- homeassistant/package_constraints.txt | 2 +- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/package_constraints.txt b/homeassistant/package_constraints.txt index 199bca41619..7b1d842bdc9 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -1,7 +1,7 @@ PyJWT==2.1.0 PyNaCl==1.4.0 aiodiscover==1.4.5 -aiohttp==3.8.0 +aiohttp==3.8.1 aiohttp_cors==0.7.0 astral==2.2 async-upnp-client==0.22.12 diff --git a/requirements.txt b/requirements.txt index 8009c50a7e9..5832d0ea2d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -c homeassistant/package_constraints.txt # Home Assistant Core -aiohttp==3.8.0 +aiohttp==3.8.1 astral==2.2 async_timeout==4.0.0 attrs==21.2.0 diff --git a/setup.py b/setup.py index a616102018d..ee163bc79f4 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ PROJECT_URLS = { PACKAGES = find_packages(exclude=["tests", "tests.*"]) REQUIRES = [ - "aiohttp==3.8.0", + "aiohttp==3.8.1", "astral==2.2", "async_timeout==4.0.0", "attrs==21.2.0",