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

View File

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