From 00991af9bdfae834c267fafaa42eab99b63b8675 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Mon, 29 Jun 2020 11:48:45 +0200 Subject: [PATCH] Fix build of tobiko docs Patch [1] moved "pandas" lib from requirements to the extra-requirements to make it optional dependency. That broke builing of the Tobiko docs as pandas is still needed in some Tobiko code and it isn't installed to build docs anymore. So lets fix that by including extra-requirements in the doc/requirements.txt file too. Change-Id: Ia55c0022fc4ec69873ea1c5667eec9685b5f3fb3 --- doc/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/requirements.txt b/doc/requirements.txt index 942e113f5..cafff7f4a 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -13,3 +13,4 @@ sphinx_rtd_theme>=0.4.2,< 1 # Apache-2.0 # one single requirements file for a project, we need to have one such file # which will include all project requirements -r ../requirements.txt +-r ../extra-requirements.txt