From fba852bac9b5be10b746bb8caee37bc0b219d1c0 Mon Sep 17 00:00:00 2001 From: Alejandro Gallo Date: Thu, 17 Nov 2022 11:26:31 +0100 Subject: [PATCH] Pin version of sphinx to 5.2.0 Related to issue https://github.com/Wilfred/python-info/issues/11 --- build/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index 50dcaa6..99f223c 100644 --- a/build/Makefile +++ b/build/Makefile @@ -1,5 +1,6 @@ PYTHON_VERSION ?= 3.9.9 VIRTUALENV_BIN ?= virtualenv +SPHINX_VERSION ?= 5.2.0 default: python.info @@ -16,7 +17,7 @@ sphinx_env: $(VIRTUALENV_BIN) sphinx_env sphinx-build: sphinx_env - sphinx_env/bin/pip install sphinx + sphinx_env/bin/pip install sphinx==$(SPHINX_VERSION) python.texi: python_src sphinx-build sphinx_env/bin/sphinx-build -b texinfo python_src/Doc python_info