RustPython version to 3.14.3#6999
Conversation
📝 WalkthroughWalkthroughThis PR updates Python version references in GitHub Actions workflows: bumps instances of 3.14.2 to 3.14.3, centralizes an Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
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 | 🟡 MinorKeep 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
There was a problem hiding this comment.
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>
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