From 11aee6c9d33c778637e74d48a20f57cc3d90e08e Mon Sep 17 00:00:00 2001 From: mdrutel Date: Fri, 30 Jun 2023 10:41:06 +0200 Subject: [PATCH] fix: add minimum verion for pyYAML --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8af23e18..71c1f475 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ packages = [{ include = "tdp" }] python = ">=3.6.2,<4.0" ansible = "2.9.27" networkx = "2.5.1" -PyYAML = "<6.0.0" +PyYAML = ">=5.1,<6.0.0" matplotlib = { version = "3.3.4", optional = true } pydot = { version = "1.4.2", optional = true } GitPython = "3.1.18"