From 850a5425cfeaef4fd588b9839643854583395b23 Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Mon, 28 Dec 2020 01:00:30 +0100 Subject: [PATCH] bibtex extension is not necessary --- .github/workflows/website.yml | 2 +- doc/conf.py | 2 +- doc/development.rst | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 20c5c95..1e145e8 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -15,7 +15,7 @@ jobs: - name: Install sphinx run: sudo apt-get install python3-virtualenv virtualenv - name: Build html documentation - run: virtualenv -p /usr/bin/python3 venv && source venv/bin/activate && pip install sphinx sphinx_rtd_theme sphinxcontrib.bibtex && cd doc && make html && cd - + run: virtualenv -p /usr/bin/python3 venv && source venv/bin/activate && pip install sphinx sphinx_rtd_theme && cd doc && make html && cd - - name: Deploy uses: peaceiris/actions-gh-pages@v2.4.0 env: diff --git a/doc/conf.py b/doc/conf.py index bbefc47..3a44876 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -25,7 +25,7 @@ sys.path.insert(0, os.path.abspath('.')) # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. extensions = ['sphinx.ext.autodoc', 'sphinx.ext.mathjax', 'sphinx.ext.intersphinx', - 'sphinxcontrib.bibtex', 'embed'] + 'embed'] # Add any paths that contain templates here, relative to this directory. diff --git a/doc/development.rst b/doc/development.rst index 550dc12..ee36bb4 100644 --- a/doc/development.rst +++ b/doc/development.rst @@ -92,7 +92,6 @@ Sphinx is used to build the documentation. For that, you have to install the next Python packages: - ``sphinx`` -- ``sphinxcontrib.bibtex`` Then: