Skip to content

Commit 74bd869

Browse files
committed
Update CPython branch tags from 3.14.7 to 3.14
1 parent bb64898 commit 74bd869

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v4
2727
with:
2828
repository: python/cpython
29-
ref: v3.14.7
29+
ref: '3.14'
3030

3131
- name: Set up Python
3232
uses: actions/setup-python@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/checkout@v4
2020
with:
2121
repository: python/cpython
22-
ref: v3.14.7
22+
ref: '3.14'
2323

2424
- name: Set up Python
2525
uses: actions/setup-python@v4

.github/workflows/sync-with-cpython.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66
workflow_dispatch:
77
inputs:
88
cpython_tag:
9-
description: 'CPython tag to sync against (e.g. v3.14.7)'
9+
description: 'CPython tag to sync against (e.g. v3.14)'
1010
required: false
11-
default: 'v3.14.7'
11+
default: 'v3.14'
1212

1313
permissions:
1414
contents: write
@@ -22,7 +22,7 @@ jobs:
2222
sync:
2323
runs-on: ubuntu-latest
2424
env:
25-
CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14.7' }}
25+
CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14' }}
2626
steps:
2727
- name: Checkout translation repo
2828
uses: actions/checkout@v4

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build:
55
tools:
66
python: "3.12"
77
commands:
8-
- git clone --depth 1 --branch v3.14.7 https://github.com/python/cpython venv/cpython
8+
- git clone --depth 1 --branch v3.14 https://github.com/python/cpython venv/cpython
99
- pip install -r venv/cpython/Doc/requirements.txt
1010
# Pin Sphinx separately: requirements.txt may resolve to an older version,
1111
# and 9.1.0+ is needed for the reordered- ref / translated-display-text

scripts/po_sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,4 +450,4 @@ def main() -> None:
450450

451451

452452
if __name__ == "__main__":
453-
main()
453+
main()

0 commit comments

Comments
 (0)