From 559d7bf213fd2f1f920d3b26fa95a4b33f101c61 Mon Sep 17 00:00:00 2001 From: delucchi-cmu Date: Fri, 8 Mar 2024 13:00:44 -0500 Subject: [PATCH] Move jupyter requirement. --- python-project-template/pyproject.toml.jinja | 1 + .../{% if include_docs %}docs{% endif %}/requirements.txt.jinja | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/python-project-template/pyproject.toml.jinja b/python-project-template/pyproject.toml.jinja index d3a4e7a1..f22db2b0 100644 --- a/python-project-template/pyproject.toml.jinja +++ b/python-project-template/pyproject.toml.jinja @@ -34,6 +34,7 @@ dev = [ {%- if 'black' in enforce_style %} "black", # Used for static linting of files {%- endif %} + "jupyter", # Clears output from Jupyter notebooks {%- if mypy_type_checking != 'none' %} "mypy", # Used for static type checking of files {%- endif %} diff --git a/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja b/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja index d0206a7e..bdfa9cd4 100644 --- a/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja +++ b/python-project-template/{% if include_docs %}docs{% endif %}/requirements.txt.jinja @@ -1,7 +1,6 @@ {%- if include_notebooks %} ipykernel ipython -jupyter jupytext nbconvert nbsphinx