We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e43c26 commit a2e9e6bCopy full SHA for a2e9e6b
.github/workflows/docs.yml
@@ -31,8 +31,8 @@ jobs:
31
- name: Build Sphinx Documentation
32
run: |
33
cd docs
34
- mkdir -p source/_static
35
- uv run sphinx-build -M html source build -W
+ mkdir -p _static
+ uv run sphinx-build -M html _build -W
36
37
deploy:
38
environment:
docs/conf.py
@@ -1,5 +1,6 @@
1
import os
2
import sys
3
+import re
4
# Ensure Sphinx can find the source code
5
sys.path.insert(0, os.path.abspath("../src"))
6
@@ -8,7 +9,7 @@ def get_project_metadata():
8
9
import pathlib
10
11
- pyproject_path = pathlib.Path(__file__).parents[2] / "pyproject.toml"
12
+ pyproject_path = pathlib.Path(__file__).parents[1] / "pyproject.toml"
13
if sys.version_info >= (3, 11):
14
import tomllib
15
0 commit comments