We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b03d9f0 commit 57df1f2Copy full SHA for 57df1f2
docs/source/conf.py
@@ -13,6 +13,7 @@
13
import shutil
14
import tempfile
15
from importlib import metadata
16
+from pathlib import Path
17
18
# -- Project information -----------------------------------------------------
19
@@ -88,7 +89,7 @@
88
89
}
90
91
-_README = "../README.md"
92
+_README = str(Path(__file__).parent.parent.parent / "README.md")
93
_README_TMP = tempfile.NamedTemporaryFile() # pylint: disable=consider-using-with
94
self_readme_copy_path = _README_TMP.name
95
0 commit comments