From 761cbb1f15b4a4588814179d57c836ee050855e1 Mon Sep 17 00:00:00 2001 From: Jan Remmet Date: Wed, 19 Jul 2023 14:33:59 +0200 Subject: [PATCH] pyproject: use PyYAML 6.0.1 With the release of Cython3 the build of PyYAML 5.4.1 is broken [1]. There seems to be no plan to fix 5.4.x branch [2]. Tox tests and a real world example runs fine with 6.0.1 [1] https://github.com/yaml/pyyaml/issues/724 [2] https://github.com/yaml/pyyaml/issues/728 Signed-off-by: Jan Remmet --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1e1195694..2bf2faadc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,7 +40,7 @@ dependencies = [ "pytest>=7.0.0", "pyudev>=0.22.0", "pyusb>=1.2.1", - "PyYAML>=5.4.1", + "PyYAML>=6.0.1", "requests>=2.26.0", "xmodem>=0.4.6", ]