From 5cd21679249b099f52091e6f6d17e97f18c499e7 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 14 Oct 2021 09:29:31 +0200 Subject: [PATCH] Upgrade pyyaml to 6.0 (#57648) --- 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 7a9875f05aa..762d0fd47ba 100644 --- a/homeassistant/package_constraints.txt +++ b/homeassistant/package_constraints.txt @@ -25,7 +25,7 @@ pip>=8.0.3,<20.3 pyserial==3.5 python-slugify==4.0.1 pyudev==0.22.0 -pyyaml==5.4.1 +pyyaml==6.0 requests==2.26.0 scapy==2.4.5 sqlalchemy==1.4.23 diff --git a/requirements.txt b/requirements.txt index cd0a920111d..abe90479f01 100644 --- a/requirements.txt +++ b/requirements.txt @@ -16,7 +16,7 @@ PyJWT==2.1.0 cryptography==3.4.8 pip>=8.0.3,<20.3 python-slugify==4.0.1 -pyyaml==5.4.1 +pyyaml==6.0 requests==2.26.0 voluptuous==0.12.2 voluptuous-serialize==2.4.0 diff --git a/setup.py b/setup.py index f2f17f67c75..38b05a6f0f3 100755 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ REQUIRES = [ "cryptography==3.4.8", "pip>=8.0.3,<20.3", "python-slugify==4.0.1", - "pyyaml==5.4.1", + "pyyaml==6.0", "requests==2.26.0", "voluptuous==0.12.2", "voluptuous-serialize==2.4.0",