From cb93d9cd48c651d95c6728e1ca678395913390f7 Mon Sep 17 00:00:00 2001 From: Oshoma Momoh Date: Wed, 5 Jun 2024 17:18:30 -0400 Subject: [PATCH] Fix ReadTheDocs.io build break RTeadTheDocs build breaks on this line which I added to docs/requirements.txt: ``` -e ../src # local dependency with editable install ``` I believe removing this line will fix the build. --- docs/requirements.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/requirements.txt b/docs/requirements.txt index 5261fd34..a3cc6ccb 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,3 @@ sphinx sphinx-book-theme -sphinx-design --e ../src # local dependency with editable install \ No newline at end of file +sphinx-design \ No newline at end of file