diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-07-14 16:44:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-14 16:44:24 -0500 |
commit | 6226e1b893c84948001abdc8823209f57c8530f9 (patch) | |
tree | f7fe951298fc162a077fba62fa551ff7375b8085 | |
parent | 5edd794ef582e6f053c9798485b08a748b93ad8f (diff) | |
parent | 9e620274aee17021a3e6cda29f8b3a08d04ce446 (diff) | |
download | numpy-6226e1b893c84948001abdc8823209f57c8530f9.tar.gz |
Merge pull request #13991 from mattip/doc-make-version
DOC: emphasize need for matching numpy, git versions
-rw-r--r-- | doc/source/docs/howto_build_docs.rst | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/doc/source/docs/howto_build_docs.rst b/doc/source/docs/howto_build_docs.rst index 98d1b88ba..4bb7628c1 100644 --- a/doc/source/docs/howto_build_docs.rst +++ b/doc/source/docs/howto_build_docs.rst @@ -30,11 +30,9 @@ In addition, building the documentation requires the Sphinx extension `plot_directive`, which is shipped with Matplotlib_. This Sphinx extension can be installed by installing Matplotlib. You will also need python3.6. -Since large parts of the main documentation are stored in -docstrings, you will need to first build NumPy, and install it so -that the correct version is imported by - - >>> import numpy +Since large parts of the main documentation are obtained from numpy via +``import numpy`` and examining the docstrings, you will need to first build +NumPy, and install it so that the correct version is imported. Note that you can eg. install NumPy to a temporary location and set the PYTHONPATH environment variable appropriately. @@ -46,8 +44,11 @@ generate the docs, so write:: make html in the ``doc/`` directory. If all goes well, this will generate a -``build/html`` subdirectory containing the built documentation. Note -that building the documentation on Windows is currently not actively +``build/html`` subdirectory containing the built documentation. If you get +a message about ``installed numpy != current repo git version``, you must +either override the check by setting ``GITVER`` or re-install NumPy. + +Note that building the documentation on Windows is currently not actively supported, though it should be possible. (See Sphinx_ documentation for more information.) |