added numpy as dep

This commit is contained in:
Erik Fröjdh 2024-10-30 18:09:29 +01:00
parent 13ac6b0f37
commit b7e6962e44
2 changed files with 4 additions and 3 deletions

View File

@ -15,6 +15,7 @@ requirements:
build:
- python
- {{ compiler('cxx') }}
- numpy >=2.0.0
host:
- cmake
@ -27,11 +28,11 @@ requirements:
- zeromq
- nlohmann_json
- catch2
- numpy
- numpy >=2.0.0
run:
- python
- numpy
- numpy >=2.0.0
test:

View File

@ -1,5 +1,5 @@
[build-system]
requires = ["scikit-build-core>=0.10", "pybind11"]
requires = ["scikit-build-core>=0.10", "pybind11", "numpy"]
build-backend = "scikit_build_core.build"
[project]