From fd6bd29303d632d3a4c221979670d5b871acd1b4 Mon Sep 17 00:00:00 2001 From: Ruslan Kuprieiev Date: Fri, 31 Jan 2020 22:51:41 +0200 Subject: [PATCH] setup: move pydot to install_requires https://github.com/iterative/dvc/issues/3267 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e6b89038a4..3b037f1182 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,7 @@ def run(self): "win-unicode-console>=0.5; sys_platform == 'win32'", "pywin32>=225; sys_platform == 'win32'", "networkx>=2.1,<2.4", + "pydot>=1.2.4", "speedcopy>=2.0.1", "pyfastcopy>=1.0.3", "flatten_json>=0.1.6", @@ -100,7 +101,6 @@ def run(self): # Extra dependecies to run tests tests_requirements = [ "wheel>=0.31.1", - "pydot>=1.2.4", # Test requirements: "pytest>=4.6.0", "pytest-timeout>=1.3.3",