We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da193c4 commit a93ebd0Copy full SHA for a93ebd0
3 files changed
.github/workflows/docs.yml
@@ -17,6 +17,6 @@ jobs:
17
- uses: actions/checkout@v4
18
- uses: actions/setup-python@v4
19
- name: Install Python packages
20
- run: pip install Sphinx
+ run: pip install -r docs/requirements.txt
21
- name: Build docs
22
run: make -C docs/ html
docs/develop/gettingstarted.rst
@@ -245,7 +245,7 @@ that you use a virtual environment:
245
246
$ python3 -m venv env
247
$ source env/bin/activate
248
- $ pip install sphinx
+ $ pip install -r docs/requirements.txt
249
250
Navigate to the ``docs`` directory:
251
docs/requirements.txt
@@ -0,0 +1,2 @@
1
+sphinx~=7.2.6
2
+sphinxcontrib.jquery==4.1
0 commit comments