From 048b2217afb0e3c893d8f451c2ded08188b9a17f Mon Sep 17 00:00:00 2001 From: "Michael R. Blanton" Date: Fri, 10 May 2024 21:30:08 -0400 Subject: [PATCH] add reqs to project file --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 990d331..d0dbba1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,9 @@ dev = [ "pre-commit", # Used to run checks before finalizing a git commit "pytest", "pytest-cov", # Used to report total code coverage + "matplotlib", # Used in sample notebook intro_notebook.ipynb + "numpy", # Used in sample notebook intro_notebook.ipynb + "asv==0.5.1", # Used to compute performance benchmarks # before updating # "pre-commit", # Used to run checks before finalizing a git commit # "sphinx", # Used to automatically generate documentation @@ -41,9 +44,6 @@ dev = [ # # "nbconvert", # Needed for pre-commit check to clear output from Python notebooks # "nbsphinx", # Used to integrate Python notebooks into Sphinx documentation # # "ipython", # Also used in building notebooks into Sphinx - # "matplotlib", # Used in sample notebook intro_notebook.ipynb - # "numpy", # Used in sample notebook intro_notebook.ipynb - # "asv==0.5.1", # Used to compute performance benchmarks "ruff", # Used for static linting of files ]