From e11308f98a5c73d1b53c15382c70fa6c78ff250d Mon Sep 17 00:00:00 2001 From: Melissa DeLucchi <113376043+delucchi-cmu@users.noreply.github.com> Date: Tue, 28 May 2024 10:55:40 -0400 Subject: [PATCH] Explicitly depend on scipy (#320) --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index faf2018e..2257d37f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,11 +20,12 @@ dependencies = [ "healpy", "hipscat >=0.3.0", "ipykernel", # Support for Jupyter notebooks + "numpy", "pandas", "pyarrow", "pyyaml", + "scipy", "tqdm", - "numpy", ] # On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)