From 293ac5a423231657cedbf4c9dcf1209b333828c4 Mon Sep 17 00:00:00 2001 From: Alexander Dokuchaev Date: Mon, 30 Dec 2024 23:23:39 +0200 Subject: [PATCH] Remove tqdm from dependencies (#3168) ### Changes Remove tqdm from dependencies ### Reason for changes https://github.com/openvinotoolkit/nncf/pull/2162 Not used in nncf, rich used instead --- pyproject.toml | 3 +-- tests/onnx/requirements.txt | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fb23797fa03..1ffe4eb4c02 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,11 +46,10 @@ dependencies = [ "pydot>=1.4.1, <3.0.0", "pymoo>=0.6.0.1", "rich>=13.5.2", + "safetensors>=0.4.1", "scikit-learn>=0.24.0", "scipy>=1.3.2", "tabulate>=0.9.0", - "tqdm>=4.54.1", - "safetensors>=0.4.1" ] [project.optional-dependencies] diff --git a/tests/onnx/requirements.txt b/tests/onnx/requirements.txt index 4c6ed8ccace..b51abd36dfd 100644 --- a/tests/onnx/requirements.txt +++ b/tests/onnx/requirements.txt @@ -12,4 +12,5 @@ torchvision fastdownload==0.0.7 scikit-learn>=1.2.2,<=1.5.0 +tqdm>=4.54.1 yattag>=1.14.0