Skip to content

Commit

Permalink
Fix some docs build details
Browse files Browse the repository at this point in the history
Signed-off-by: Johannes Mueller <[email protected]>
  • Loading branch information
johannes-mueller committed Dec 7, 2023
1 parent 89ca1fc commit 99de6b6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
5 changes: 0 additions & 5 deletions docs/3rd-party-licenses.md

This file was deleted.

5 changes: 5 additions & 0 deletions docs/3rd-party-licenses.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
3rd Party Licenses
==================

.. literalinclude:: ../3rd-party-licenses.txt
:language: text
8 changes: 7 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
vdisplay = Xvfb()
vdisplay.start()

os.environ['PYDEVD_DISABLE_FILE_VALIDATION'] = "1"

ipython_dir = os.path.join(__projectdir__, "_build", "ipythondir")
os.environ['IPYTHONDIR'] = ipython_dir

Expand Down Expand Up @@ -128,7 +130,11 @@
templates_path = ["_templates"]

# The suffix of source filenames.
source_suffix = [".rst", ".md", ".txt", ".ipynb"]
source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'restructuredtext',
'.md': 'markdown',
}

# The encoding of source files.
# source_encoding = 'utf-8-sig'
Expand Down

0 comments on commit 99de6b6

Please sign in to comment.