summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-12-05 20:17:31 (GMT)
committerBrett Cannon <brett@python.org>2014-12-05 20:17:31 (GMT)
commitd5ea39d1b86ce8ba0db8ea919797adb29b137add (patch)
tree8e49c8782d6eb45b7b77cd2a6411a9bf7454166f /Misc
parent1a7b8d143965c281467379123187e0ef323380c3 (diff)
downloadcpython-d5ea39d1b86ce8ba0db8ea919797adb29b137add.zip
cpython-d5ea39d1b86ce8ba0db8ea919797adb29b137add.tar.gz
cpython-d5ea39d1b86ce8ba0db8ea919797adb29b137add.tar.bz2
Issue #22394: Add a 'venv' command to Doc/Makefile.
This will create a venv using the interpreter specified by the PYTHON variable for the Makefile that also install Sphinx. Typical usage is expected to be: cd Doc make venv PYTHON=../python make html PYTHON=venv/bin/python3
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 496be4e..c7c8f8d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1348,6 +1348,10 @@ C API
Documentation
-------------
+- Issue #22394: Doc/Makefile now supports ``make venv PYTHON=../python`` to
+ create a venv for generating the documentation, e.g.,
+ ``make html PYTHON=venv/bin/python3``.
+
- Issue #21514: The documentation of the json module now refers to new JSON RFC
7159 instead of obsoleted RFC 4627.