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 5e297a6 commit 0a506d9Copy full SHA for 0a506d9
.github/workflows/docs.yml
@@ -10,7 +10,8 @@ jobs:
10
- uses: actions/setup-python@v3
11
- name: Install dependencies
12
run: |
13
- pip install sphinx sphinx_rtd_theme
+ python -m pip install --upgrade pip
14
+ pip install '.[doc]'
15
- name: Sphinx build
16
17
sphinx-build -b html docs/source docs/build/html
pyproject.toml
@@ -17,3 +17,9 @@ authors = [
]
18
description = "Bot de telegram para organizar pycamp"
19
readme = "README.md"
20
+
21
+[project.optional-dependencies]
22
+doc = [
23
+ "sphinx==7.3.7",
24
+ "sphinx_rtd_theme==2.0.0",
25
+]
0 commit comments