https://github.com/python/cpython
Raw File
Tip revision: 3bc0d2b851bfa38bb3614d56bd9b83b1c651ea63 authored by Grigoriev Semyon on 03 April 2024, 10:37:39 UTC
[3.11] gh-109120: Fix syntax error in handlinh of incorrect star expressions… (#117464)
Tip revision: 3bc0d2b
.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