From 78c9abe56e5fb3eeb960f6ce9f58b57dffa2e03a Mon Sep 17 00:00:00 2001 From: "George G. Vega Yon" Date: Thu, 14 Sep 2023 16:55:53 -0600 Subject: [PATCH] Adding numpy dependency --- conda.recipe/meta.yaml | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index e0ff66a..d9b55ac 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -22,6 +22,7 @@ requirements: run: - python + - numpy test: diff --git a/pyproject.toml b/pyproject.toml index 69635a9..c012c75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["scikit-build-core>=0.3.3", "pybind11", "numpy"] +requires = ["scikit-build-core>=0.3.3", "pybind11"] build-backend = "scikit_build_core.build" @@ -22,6 +22,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", ] +dependencies = ["numpy] [project.optional-dependencies] test = ["pytest"]