From 76f0525990cef4b82f75e8d11e0617e96791fa1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Est=C3=A9vez?= Date: Sat, 17 May 2025 10:18:40 +0200 Subject: [PATCH] add scipy as a dependency scipy is imported in sigmf.apps.convert_wav, so it needs to be listed as a dependency in pyproject.toml. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 56bb7d1..1f1c0e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ dynamic = ["version", "readme"] requires-python = ">=3.7" dependencies = [ "numpy", # for vector math + "scipy", # used in sigmf.apps.convert_wav "jsonschema", # for spec validation ] [project.urls]