From da71ba316b36b56e61e95ce0315311688e878512 Mon Sep 17 00:00:00 2001 From: Ed Manlove Date: Sat, 22 Jun 2024 09:23:30 -0400 Subject: [PATCH] Added requirements.txt to doc build environment (#14171) For the API documentation as sphinx autogenerates the api docs from the code it needs the dependent Python packages. This change adds those to the tox docs build environment. --- py/tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/py/tox.ini b/py/tox.ini index ccbd578b67741..a144861b1fdb5 100644 --- a/py/tox.ini +++ b/py/tox.ini @@ -6,6 +6,7 @@ skip_install = true deps = Jinja2==3.0.3 Sphinx==1.8.2 + -r requirements.txt commands = sphinx-build -b html -d ../build/docs/doctrees docs/source ../build/docs/api/py {posargs}