From 2ffaabb44a6c01867f5b86c88d509408a0195a0d Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Tue, 16 Jul 2024 11:11:30 +0300 Subject: [PATCH] Set upper limit for pydot version 3.0.0 (#2814) ### Changes Set upper limit for pydot version 3.0.0 ### Reason for changes Pydot 3.0.0 broke saving and loading with special characters --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 49023941976..58e0a5e99fb 100644 --- a/setup.py +++ b/setup.py @@ -111,7 +111,7 @@ def find_version(*file_paths): "packaging>=20.0", "pandas>=1.1.5,<2.3", "psutil", - "pydot>=1.4.1", + "pydot>=1.4.1, <3.0.0", "pymoo>=0.6.0.1", "rich>=13.5.2", "scikit-learn>=0.24.0",