From 94e667a9d8236fa8022bacb71c8637d4260d9828 Mon Sep 17 00:00:00 2001 From: Francis Couture-Harpin Date: Mon, 6 May 2024 09:08:09 -0400 Subject: [PATCH] gguf-py : add tqdm as a dependency It's small, and used for a progress bar in GGUFWriter.write_tensors_to_file --- gguf-py/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml index d1d876d6d..36e63ee3b 100644 --- a/gguf-py/pyproject.toml +++ b/gguf-py/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ [tool.poetry.dependencies] python = ">=3.8" numpy = ">=1.17" +tqdm = ">=4.27" [tool.poetry.dev-dependencies] pytest = "^5.2"