https://github.com/python/cpython
Raw File
Tip revision: d2340ef25721b6a72d45d4508c672c4be38c67d3 authored by Pablo Galindo on 06 June 2023, 21:58:02 UTC
Python 3.11.4
Tip revision: d2340ef
.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