From cf334207c93469a339c2f7d1ca1fac60c0bc91d4 Mon Sep 17 00:00:00 2001 From: Troi Williams <40696868+troiwill@users.noreply.github.com> Date: Fri, 17 May 2024 12:48:04 -0400 Subject: [PATCH] Fixed issue with missing numpy dependency during pip install. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2a27e90..61e5270 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel", "Cython>=3.0.8"] +requires = ["setuptools", "wheel", "Cython>=3.0.8", "numpy>=1.18.0"] build-backend = "setuptools.build_meta" [project]