Skip to content

RustPython version to 3.14.3#6999

Merged
youknowone merged 3 commits intoRustPython:mainfrom
fanninpm:3.14.3
Feb 5, 2026
Merged

RustPython version to 3.14.3#6999
youknowone merged 3 commits intoRustPython:mainfrom
fanninpm:3.14.3

Conversation

@fanninpm
Copy link
Contributor

@fanninpm fanninpm commented Feb 5, 2026

CPython v3.14.3 released on 3 February (no longer being a helpful approximation of pi).
Let me know if I missed anything.

Summary by CodeRabbit

  • Chores
    • Updated default Python version to 3.14.3 across CI/CD workflows, affecting test and build environments.
    • Centralized Python version via a workflow-level environment variable to drive setup and checkout steps.
    • Made workflow inputs and steps use the centralized Python version (including defaults when no input is provided).

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Feb 5, 2026

📝 Walkthrough

Walkthrough

This PR updates Python version references in GitHub Actions workflows: bumps instances of 3.14.2 to 3.14.3, centralizes an env.PYTHON_VERSION in lib-deps-check, and updates the default input in update-doc-db.yml.

Changes

Cohort / File(s) Summary
CI & Cron workflows
​.github/workflows/ci.yaml, ​.github/workflows/cron-ci.yaml
Replaced Python version 3.14.2 with 3.14.3 in environment variables and workflow usages.
Lib deps / CPython checkout
​.github/workflows/lib-deps-check.yaml
Added env.PYTHON_VERSION: "3.14.3", changed Lib/** quoting, and switched hardcoded CPython branch/Setup-Python versions to use the env variable (v${{ env.PYTHON_VERSION }}).
Docs DB update workflow
​.github/workflows/update-doc-db.yml
Changed default input value for the Python version from 3.14.2 to 3.14.3.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • youknowone
  • ShaharNaveh

Poem

🐰 I nibbled YAML lines at dusk,
Swapped 3.14.2 for 3.14.3 with trust.
A tiny hop across each file,
CI smiles back and winks a while.
🥕

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'RustPython version to 3.14.3' directly matches the main objective: updating RustPython to align with CPython v3.14.3 released on February 3, 2026.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@fanninpm fanninpm marked this pull request as ready for review February 5, 2026 02:47
@fanninpm fanninpm requested a review from youknowone February 5, 2026 02:47
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
.github/workflows/lib-deps-check.yaml (1)

71-76: ⚠️ Potential issue | 🟡 Minor

Keep the CPython clone tag aligned with 3.14.3.

Line 75 sets setup-python to 3.14.3, but line 38 clones CPython v3.14.2. This version mismatch means dependency comparisons target an older stdlib than the runtime being tested. Update the clone tag to v3.14.3.

🔧 Proposed fix
-          git clone --depth 1 --branch v3.14.2 https://github.com/python/cpython.git cpython
+          git clone --depth 1 --branch v3.14.3 https://github.com/python/cpython.git cpython

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In @.github/workflows/lib-deps-check.yaml:
- Around line 39-41: The Checkout CPython step uses git clone with --branch "${{
env.PYTHON_VERSION }}" which lacks the required "v" prefix for CPython release
tags; update the git clone invocation in the "Checkout CPython" step to use the
v-prefixed ref (e.g., --branch "v${{ env.PYTHON_VERSION }}") so the workflow
clones the correct CPython release tag.

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
@youknowone youknowone merged commit 2da6c34 into RustPython:main Feb 5, 2026
15 of 17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants