From d31a9b265b073f6618b48072ed4ca9a57e816721 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Nov 2021 04:14:32 +0000 Subject: [PATCH] Update graphviz requirement from <0.19,>=0.14 to >=0.14,<0.20 Updates the requirements on [graphviz](https://github.com/xflr6/graphviz) to permit the latest version. - [Release notes](https://github.com/xflr6/graphviz/releases) - [Changelog](https://github.com/xflr6/graphviz/blob/master/CHANGES.rst) - [Commits](https://github.com/xflr6/graphviz/compare/0.14...0.19) --- updated-dependencies: - dependency-name: graphviz dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bb995d6..c6d62d6 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def read(*parts): install_requires = [ "click>=7.1,<8.1", - "graphviz>=0.14,<0.19", + "graphviz>=0.14,<0.20", "protobuf>=3.13,<3.20" ]