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 1957f34 commit 0e8a506Copy full SHA for 0e8a506
docs/conf.py
@@ -11,13 +11,14 @@
11
# Get the project root dir, which is the parent dir of this
12
cwd = Path(__file__).parent
13
project_root = cwd.parent
14
+project_src = project_root / "src"
15
-sys.path.insert(0, str(project_root))
16
+sys.path.insert(0, str(project_src))
17
sys.path.insert(0, str(cwd / "_ext"))
18
19
# package data
20
about: Dict[str, str] = {}
-with open(project_root / "libtmux" / "__about__.py") as fp:
21
+with open(project_src / "libtmux" / "__about__.py") as fp:
22
exec(fp.read(), about)
23
24
extensions = [
0 commit comments