Skip to content

Commit 37305fe

Browse files
committed
Update .yml files
1 parent 9b7f3fa commit 37305fe

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
repository: python/cpython
28-
ref: v3.14.6
28+
ref: v3.14.7
2929

3030
- name: Set up Python
3131
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.6
22+
ref: v3.14.7
2323

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

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

Lines changed: 5 additions & 5 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.6)'
9+
description: 'CPython tag to sync against (e.g. v3.14.7)'
1010
required: false
11-
default: 'v3.14.6'
11+
default: 'v3.14.7'
1212

1313
permissions:
1414
contents: write
@@ -44,7 +44,7 @@ jobs:
4444
--depth 1 \
4545
--filter=blob:none \
4646
--sparse \
47-
--branch ${{ github.event.inputs.cpython_tag || 'v3.14.6' }} \
47+
--branch ${{ github.event.inputs.cpython_tag || 'v3.14.7' }} \
4848
https://github.com/python/cpython.git \
4949
.cpython-src
5050
cd .cpython-src
@@ -87,7 +87,7 @@ jobs:
8787
- name: Open issue for fuzzy strings
8888
env:
8989
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
90-
CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14.6' }}
90+
CPYTHON_TAG: ${{ github.event.inputs.cpython_tag || 'v3.14.7' }}
9191
run: |
9292
tmpfile=$(mktemp)
9393
while IFS= read -r f; do
@@ -175,5 +175,5 @@ jobs:
175175
exit 0
176176
fi
177177
git commit -m \
178-
"chore: sync msgids with CPython ${{ github.event.inputs.cpython_tag || 'v3.14.6' }}"
178+
"chore: sync msgids with CPython ${{ github.event.inputs.cpython_tag || 'v3.14.7' }}"
179179
git push

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ build:
2929
fi
3030
echo "Continuing build."
3131
exit 0
32-
- git clone --depth 1 --branch v3.14.6 https://github.com/python/cpython venv/cpython
32+
- git clone --depth 1 --branch v3.14.7 https://github.com/python/cpython venv/cpython
3333
- pip install -r venv/cpython/Doc/requirements.txt
3434
- mkdir -p venv/cpython/Doc/locales/fa/LC_MESSAGES
3535
- cp --parents *.po venv/cpython/Doc/locales/fa/LC_MESSAGES/

0 commit comments

Comments
 (0)