From 2c5f519103cefad73149a2edc9a6be35d0aeded2 Mon Sep 17 00:00:00 2001 From: "Nota, Christopher" Date: Sun, 17 Mar 2024 16:06:25 -0400 Subject: [PATCH] edit handling of docs dependencies --- .readthedocs.yml | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 5a2a5475..20a7039e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -11,6 +11,7 @@ python: path: . extra_requirements: - docs + - dev sphinx: configuration: docs/source/conf.py diff --git a/setup.py b/setup.py index ac0ee84d..54b33f01 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ extras["all"] = ( extras["atari"] + extras["mujoco"] + extras["pybullet"] + extras["ma-atari"] ) -extras["dev"] = extras["all"] + extras["test"] + extras["docs"] +extras["dev"] = extras["all"] + extras["test"] setup( name="autonomous-learning-library",