docs: set gettext_uuid to False to reduce churn (#11567)

- `gettext_uuid=True` makes every commit update every .pot file in spack/localized-docs,
  and speeds up the internationalized doc build slightly.

- Optimize for less repository churn, and use `python-levenshtein` to accelerate 
  the build instead.
This commit is contained in:
Todd Gamblin 2019-05-27 13:42:27 -07:00 committed by GitHub
parent 6d54212b94
commit 3ae5262182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -150,7 +150,7 @@ def setup(sphinx):
# Sphinx gettext settings
gettext_compact = True
gettext_uuid = True
gettext_uuid = False
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:

View File

@ -4,3 +4,4 @@
sphinx==2.0.1
sphinxcontrib-programoutput==0.14
sphinx-rtd-theme==0.4.3
python-levenshtein