https://github.com/python/cpython
Raw File
Tip revision: f992a60014b7ca83de038fc64572a63f4eb39c74 authored by Thomas Wouters on 19 June 2023, 18:55:07 UTC
Python 3.12.0b3
Tip revision: f992a60
.readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Project page: https://readthedocs.org/projects/cpython-previews/

version: 2

sphinx:
   configuration: Doc/conf.py

build:
  os: ubuntu-22.04
  tools:
    python: "3"

  commands:
    - make -C Doc venv html
    - mkdir _readthedocs
    - mv Doc/build/html _readthedocs/html
back to top