From 388d6169d9a5401c242fbc51dd5f702e56026a08 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 27 Jul 2023 16:02:52 +0200 Subject: [PATCH] setup.py: install sphinx through install_requires --- Makefile | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 33b4cae..e71eeb8 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ clean: .PHONY: install # install in a virtualenv install: python3 -m venv .venv && source .venv/bin/activate && \ - pip3 install wheel 'sphinx==7.1.0' && \ + pip3 install wheel && \ python3 -m pip install . ##### TESTS ##### diff --git a/setup.py b/setup.py index 33db2a4..51d3e2f 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,7 @@ 'yt_dlp', 'jinja2', 'Markdown', + 'sphinx==7.1.0', 'furo', 'myst-parser', 'sphinx-design'