1# Read the Docs configuration file
2# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3# Project page: https://readthedocs.org/projects/cpython-previews/
4
5version: 2
6
7sphinx:
8   configuration: Doc/conf.py
9
10build:
11  os: ubuntu-22.04
12  tools:
13    python: "3"
14
15  commands:
16    - make -C Doc venv html
17    - mkdir _readthedocs
18    - mv Doc/build/html _readthedocs/html
19