From 891928996b89e573fabd3877e1168972ced95835 Mon Sep 17 00:00:00 2001 From: Aidova Date: Tue, 26 Jul 2022 15:39:39 +0400 Subject: [PATCH] requirements: workaround networkx issue --- tools/accuracy_checker/requirements.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/accuracy_checker/requirements.in b/tools/accuracy_checker/requirements.in index ffbecc66cb..befdd84fa6 100644 --- a/tools/accuracy_checker/requirements.in +++ b/tools/accuracy_checker/requirements.in @@ -2,6 +2,9 @@ tqdm>=4.54.1 # image reading and preprocessing +# networkx version upperbound in scikit-image is conflicted +networkx~=2.5;python_version<"3.7" +networkx<2.8.1;python_version>="3.7" # note: python 3.6 wheels is not available since 0.18 scikit-image~=0.17.2;python_version<"3.7" scikit-image>=0.19.2;python_version>="3.7"