File tree Expand file tree Collapse file tree 4 files changed +823
-339
lines changed
Expand file tree Collapse file tree 4 files changed +823
-339
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,10 @@ phoebus-product/settings_template.ini
124124# doc files generated by docs/source/conf.py
125125docs /source /applications.rst
126126docs /source /services.rst
127+
127128# Ignore Sphinx extensions and build artifacts
128129docs /source /_ext /** /__pycache__ /
129130docs /source /_ext /** /* .pyc
131+
132+ # Ignore pip installation metadata
133+ docs /phoebus_docs.egg-info /
Original file line number Diff line number Diff line change @@ -32,13 +32,15 @@ The Pixi configuration is in `pyproject.toml` under the `[tool.pixi.*]` sections
3232You need to install sphinx and its dependencies:
3333
3434``` bash
35- # Using the requirements file
36- pip install -r source/requirements.txt
37-
38- # Or using pyproject.toml (installs all dependencies)
35+ # Install from pyproject.toml (installs all dependencies)
3936pip install .
4037```
4138
39+ Alternatively, on some RedHat setups:
40+ ``` bash
41+ sudo yum install python-sphinx
42+ ```
43+
4244Then build the web version:
4345``` bash
4446make clean html
You can’t perform that action at this time.
0 commit comments