-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update dependency python to 3.14 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,7 +28,7 @@ jobs: | |
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.12" | ||
| python-version: "3.14" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔍 Python matrix and package metadata still cap at 3.12 The dependency bump moves the CI toolchain workflows to Python 3.14, but the actual test matrix in Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| - name: Build sdist + wheel | ||
| run: python -m pip install --upgrade build && python -m build | ||
| - name: Validate metadata (twine check) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 Reusable workflow bumped here may drift from its upstream mirror
This file's header comment states it mirrors
wave-foundation/scripts/validate-skills.py/ the sharedchecks.ymland instructs keeping the two in sync. Bumping the interpreter only here introduces drift with the upstream copy that other WAVE repos consume; the same bump likely needs to land in wave-foundation. Also note the inlined gate doespip install pyyamlon the pinned interpreter — verify a PyYAML wheel exists for 3.14 in CI, otherwise the skill gate falls back to a source build and can fail.Was this helpful? React with 👍 or 👎 to provide feedback.