From bb5dffaf67dcdacfdc656e83d886cdab441b5072 Mon Sep 17 00:00:00 2001 From: jrob93 Date: Tue, 5 Mar 2024 10:18:07 +0000 Subject: [PATCH 1/2] add matplotlib requirement --- docs/requirements.txt | 1 + pyproject.toml | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index f51957e..3979f83 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -7,3 +7,4 @@ jupytext jupyter astropy sbpy +matplotlib diff --git a/pyproject.toml b/pyproject.toml index 5447288..f063280 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,8 @@ dependencies = [ "numpy", "lsst-rsp", "astropy", - "sbpy" + "sbpy", + "matplotlib" # plotting for demo notebooks ] [project.urls] From cf3c9893936e92952eb870da92e8bd2622a3841e Mon Sep 17 00:00:00 2001 From: Meg Schwamb Date: Tue, 5 Mar 2024 13:11:19 +0000 Subject: [PATCH 2/2] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f063280..5c5df30 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ dependencies = [ "lsst-rsp", "astropy", "sbpy", - "matplotlib" # plotting for demo notebooks + "matplotlib" # for plotting ] [project.urls]