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 c6634cc commit ef11061Copy full SHA for ef11061
.readthedocs.yaml
@@ -13,6 +13,6 @@ build:
13
commands:
14
- pip install hatch
15
- hatch run build-ext
16
- - mkdocs build
+ - hatch run docs:build
17
- mkdir --parents $READTHEDOCS_OUTPUT
18
- mv site $READTHEDOCS_OUTPUT/html
pyproject.toml
@@ -192,6 +192,10 @@ fixall = "inv fixall --args '{args}'"
192
[tool.hatch.envs.docs]
193
features = ["scripts", "docs", "lint"]
194
195
+[tool.hatch.envs.docs.scripts]
196
+build = "mkdocs build {args}"
197
+serve = "mkdocs serve {args}"
198
+
199
[tool.hatch.envs.check]
200
features = ["scripts", "check"]
201
0 commit comments