From ee88ed1c88331f3e79ca9f0ecf5bf0cd66943d55 Mon Sep 17 00:00:00 2001 From: stever178 <2874146120@qq.com> Date: Sat, 14 Jun 2025 12:50:00 -0400 Subject: [PATCH] Deal with the issue of 'No module named `numpy`' in the workflow --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e20c98e..8bf183d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ version = "0.1.0" authors = [{ name = "Jiacheng Huang", email = "huangjiacheng0709@outlook.com" }] description = "NineToothed operators for LLMs." readme = "README.md" -dependencies = ["ninetoothed>=0.16.0", "torch"] +dependencies = ["ninetoothed>=0.16.0", "torch", "numpy"] requires-python = ">=3.10" classifiers = [ "Programming Language :: Python :: 3",