diff options
author | 2023-04-24 17:17:28 -0700 | |
---|---|---|
committer | 2023-04-24 17:17:28 -0700 | |
commit | 03bfb024201da4e01a3bf3a2bba3a80dba0cb554 (patch) | |
tree | 7ee32ba3309b1bd19cdf620d17b58c58180eb57a /Docs/source/conf.py | |
parent | 5174ce8e6cca15dd6d77d49b10fd83d5fee68e47 (diff) | |
download | WarpX-03bfb024201da4e01a3bf3a2bba3a80dba0cb554.tar.gz WarpX-03bfb024201da4e01a3bf3a2bba3a80dba0cb554.tar.zst WarpX-03bfb024201da4e01a3bf3a2bba3a80dba0cb554.zip |
Docs: suppress Sphinx warning of duplicate bibliography labels (#3869)
* suppress sphinx warning about duplicate bibliography labels
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Diffstat (limited to '')
-rw-r--r-- | Docs/source/conf.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Docs/source/conf.py b/Docs/source/conf.py index 289bbad8c..497ef341b 100644 --- a/Docs/source/conf.py +++ b/Docs/source/conf.py @@ -208,3 +208,5 @@ subprocess.call('cd ../; doxygen;' 'cp -r doxyhtml source/_static/;' 'cp warpx-doxygen-web.tag.xml source/_static/doxyhtml/', shell=True) + +suppress_warnings = ["bibtex.duplicate_label"] |