We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fd456 commit 001db7bCopy full SHA for 001db7b
.github/workflows/build-docs.yml
@@ -52,7 +52,7 @@ jobs:
52
run: |
53
python -m pip install --upgrade pip
54
pip install sphinx furo numpydoc breathe myst-parser
55
- CMAKE_ARGS="-DBUILD_GUI=OFF" pip install -e .
+ pip install -e .
56
57
- name: Build documentation (Doxygen + Sphinx)
58
working-directory: docs
setup.py
@@ -36,6 +36,7 @@ def build_extension(self, ext):
36
f"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY={extdir}",
37
f"-DPYTHON_EXECUTABLE={sys.executable}",
38
"-DBUILD_PYTHON_BINDINGS=ON",
39
+ "-DBUILD_GUI=OFF",
40
]
41
42
cfg = "Debug" if self.debug else "Release"
0 commit comments