We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6369e7a commit 61e2c1fCopy full SHA for 61e2c1f
.readthedocs.yaml
@@ -0,0 +1,21 @@
1
+# Read the Docs configuration file
2
+# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+# RTD API version
5
+version: 2
6
7
+build:
8
+ os: ubuntu-22.04
9
+ tools:
10
+ python: >-
11
+ 3.11
12
+ # Build with make coredocs
13
+ commands:
14
+ - python -m venv "${READTHEDOCS_VIRTUALENV_PATH}"
15
+ - >-
16
+ "${READTHEDOCS_VIRTUALENV_PATH}"/bin/python -m pip install --exists-action=w -r tests/requirements.in -c tests/requirements.txt
17
18
+ "${READTHEDOCS_VIRTUALENV_PATH}"/bin/python docs/bin/clone-core.py
19
+ - make coredocs -C docs/docsite
20
+ - mkdir -pv "${READTHEDOCS_OUTPUT}"/html
21
+ - mv -v docs/docsite/_build/html "${READTHEDOCS_OUTPUT}"/
0 commit comments