There was an error while loading. Please reload this page.
1 parent 9c8fbf1 commit 9e5f5f4Copy full SHA for 9e5f5f4
1 file changed
.readthedocs.yml
@@ -4,6 +4,15 @@ build:
4
os: ubuntu-24.04
5
tools:
6
python: "3.12"
7
+ jobs:
8
+ post_checkout:
9
+ - |
10
+ if [ "$READTHEDOCS_VERSION_TYPE" != "external" ]; then
11
+ CHANGED_FILES=$(git diff --name-only HEAD^ HEAD || echo "")
12
+ if [ -n "$CHANGED_FILES" ] && ! echo "$CHANGED_FILES" | grep -qE '\.(po|yaml|yml)$'; then
13
+ exit 183
14
+ fi
15
16
17
commands:
18
- git clone --depth 1 --branch v3.14.6 https://github.com/python/cpython venv/cpython
0 commit comments