https://github.com/python/cpython
Revision f6e7a6ce651b43c6e060608a4bb20685f39e9eaa authored by Victor Stinner on 12 March 2024, 17:31:35 UTC, committed by GitHub on 12 March 2024, 17:31:35 UTC
Don't parse argv when setting the configuration, to avoid SystemExit if parsing argv fails.
1 parent 5d72b75
Raw File
Tip revision: f6e7a6ce651b43c6e060608a4bb20685f39e9eaa authored by Victor Stinner on 12 March 2024, 17:31:35 UTC
gh-116656: Fix test_capi test_py_config_isoloated_per_interpreter() (#116658)
Tip revision: f6e7a6c
.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:
    # https://docs.readthedocs.io/en/stable/build-customization.html#cancel-build-based-on-a-condition
    #
    # Cancel building pull requests when there aren't changes in the Doc directory.
    #
    # If there are no changes (git diff exits with 0) we force the command to return with 183.
    # This is a special exit code on Read the Docs that will cancel the build immediately.
    - |
      if [ "$READTHEDOCS_VERSION_TYPE" = "external" ] && [ "$(git diff --quiet origin/main -- Doc/ .readthedocs.yml; echo $?)" -eq 0 ];
      then
        echo "No changes to Doc/ - exiting the build.";
        exit 183;
      fi

    - make -C Doc venv html
    - mkdir _readthedocs
    - mv Doc/build/html _readthedocs/html

back to top