From 6db485f277e599abadf12743e7c57618ed58e7ab Mon Sep 17 00:00:00 2001 From: Ryan Soley Date: Mon, 18 Sep 2023 16:25:46 -0400 Subject: [PATCH] add all required packages to docs env --- docs/source/contributing.rst | 4 ++-- pyproject.toml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/source/contributing.rst b/docs/source/contributing.rst index 3593bfcd..e112306b 100644 --- a/docs/source/contributing.rst +++ b/docs/source/contributing.rst @@ -31,7 +31,7 @@ at the root of the repository. conda env create -n rubicon-ml-dev python>=3.8 Installing ``rubicon_ml`` -======================= +========================= After you've cloned the repository, use ``pip`` to install ``rubicon_ml`` locally: @@ -84,7 +84,7 @@ the necessary tools: .. code-block:: shell - conda env create -n rubicon-ml-docs python>=3.8 + conda env create -n rubicon-ml-docs "python>=3.8" Activate the new environment, install a local copy of ``rubicon_ml``, and use the ``make html`` command from the ``docs`` directory to build the diff --git a/pyproject.toml b/pyproject.toml index cf8e3b94..53ca1e1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,6 +51,8 @@ docs = [ "numpydoc", "sphinx", "sphinx-copybutton", + "rubicon-ml[prefect]", + "rubicon-ml[viz]", ] lab = ["jupyterlab"] prefect = ["prefect<=1.2.4,>=0.12.0"]