Skip to content

Commit 2da6c34

Browse files
RustPython version to 3.14.3 (#6999)
* RustPython version to 3.14.3 * Refactor version number to variable * Fix CPython clone version statement Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 6de6a92 commit 2da6c34

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ env:
113113
ENV_POLLUTING_TESTS_MACOS: >-
114114
ENV_POLLUTING_TESTS_WINDOWS: >-
115115
# Python version targeted by the CI.
116-
PYTHON_VERSION: "3.14.2"
116+
PYTHON_VERSION: "3.14.3"
117117
X86_64_PC_WINDOWS_MSVC_OPENSSL_LIB_DIR: C:\Program Files\OpenSSL\lib\VC\x64\MD
118118
X86_64_PC_WINDOWS_MSVC_OPENSSL_INCLUDE_DIR: C:\Program Files\OpenSSL\include
119119

.github/workflows/cron-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ name: Periodic checks/tasks
1313

1414
env:
1515
CARGO_ARGS: --no-default-features --features stdlib,importlib,encodings,ssl-rustls,jit
16-
PYTHON_VERSION: "3.14.2"
16+
PYTHON_VERSION: "3.14.3"
1717

1818
jobs:
1919
# codecov collects code coverage data from the rust tests, python snippets and python test suite.

.github/workflows/lib-deps-check.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ on:
44
pull_request_target:
55
types: [opened, synchronize, reopened]
66
paths:
7-
- 'Lib/**'
7+
- "Lib/**"
88

99
concurrency:
1010
group: lib-deps-${{ github.event.pull_request.number }}
1111
cancel-in-progress: true
1212

13+
env:
14+
PYTHON_VERSION: "3.14.3"
15+
1316
jobs:
1417
check_deps:
1518
permissions:
@@ -35,7 +38,7 @@ jobs:
3538
3639
- name: Checkout CPython
3740
run: |
38-
git clone --depth 1 --branch v3.14.2 https://github.com/python/cpython.git cpython
41+
git clone --depth 1 --branch "v${{ env.PYTHON_VERSION }}" https://github.com/python/cpython.git cpython
3942
4043
- name: Get changed Lib files
4144
id: changed-files
@@ -72,7 +75,7 @@ jobs:
7275
if: steps.changed-files.outputs.modules != ''
7376
uses: actions/setup-python@v6.2.0
7477
with:
75-
python-version: "3.12"
78+
python-version: "${{ env.PYTHON_VERSION }}"
7679

7780
- name: Run deps check
7881
if: steps.changed-files.outputs.modules != ''

.github/workflows/update-doc-db.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
python-version:
1010
description: Target python version to generate doc db for
1111
type: string
12-
default: "3.14.2"
12+
default: "3.14.3"
1313
ref:
1414
description: Branch to commit to (leave empty for current branch)
1515
type: string

0 commit comments

Comments
 (0)