From c7e05cb44afdd47b506d5d78afa9f1795e18a501 Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Thu, 13 Jan 2022 01:07:11 +0100 Subject: [PATCH] Upgrade yarl to 1.7.2 (#64009) --- 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 1f7f595938f..bb29ffbb4ee 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -33,7 +33,7 @@ sqlalchemy==1.4.27 typing-extensions>=3.10.0.2,<5.0 voluptuous-serialize==2.5.0 voluptuous==0.12.2 -yarl==1.6.3 +yarl==1.7.2 zeroconf==0.38.1 # Constrain pycryptodome to avoid vulnerability diff --git a/requirements.txt b/requirements.txt index 8f649ca5fd9..b0319897a48 100644 --- a/requirements.txt +++ b/requirements.txt @@ -23,4 +23,4 @@ requests==2.27.1 typing-extensions>=3.10.0.2,<5.0 voluptuous==0.12.2 voluptuous-serialize==2.5.0 -yarl==1.6.3 +yarl==1.7.2 diff --git a/setup.py b/setup.py index cf8d2e63dcd..62729ab898c 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ REQUIRES = [ "typing-extensions>=3.10.0.2,<5.0", "voluptuous==0.12.2", "voluptuous-serialize==2.5.0", - "yarl==1.6.3", + "yarl==1.7.2", ] MIN_PY_VERSION = ".".join(map(str, hass_const.REQUIRED_PYTHON_VER))