https://github.com/python/cpython
Revision c485715ba884ebfbcbad7a0ab01a8dc933f74d2b authored by Miss Islington (bot) on 27 September 2023, 00:35:26 UTC, committed by GitHub on 27 September 2023, 00:35:26 UTC
gh-101100: Fix Sphinx warnings in Doc/using/configure.rst (GH-109931)
(cherry picked from commit 3538930d87e6bdd2bfffa3f674a62cc91d359d31)

Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 88917dd
Raw File
Tip revision: c485715ba884ebfbcbad7a0ab01a8dc933f74d2b authored by Miss Islington (bot) on 27 September 2023, 00:35:26 UTC
[3.11] gh-101100: Fix Sphinx warnings in Doc/using/configure.rst (GH-109931) (#109938)
Tip revision: c485715
.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