-
Notifications
You must be signed in to change notification settings - Fork 131
Update github workflows #619
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
|
Contributor
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. 🔴 Type-checking job downloads native library into a nonexistent Python folder after version upgrade The native library download destination is hardcoded to a Python 3.9 folder ( Version mismatch between setup-python and hardcoded venv pathThe step at (Refers to line 38) Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,17 +13,17 @@ jobs: | |
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7 | ||
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | ||
| with: | ||
| submodules: recursive | ||
|
|
||
| - name: Set up Python 3.9 | ||
| uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7 | ||
| with: | ||
| python-version: 3.9 | ||
| python-version: 3.14 | ||
|
Contributor
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. 🔴 Hardcoded The Python version was bumped from 3.9 to 3.14 on line 23, but the Was this helpful? React with 👍 or 👎 to provide feedback. |
||
|
|
||
| - name: Install uv | ||
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | ||
| uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2 | ||
| with: | ||
| enable-cache: true | ||
| cache-dependency-glob: "uv.lock" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
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.
📝 Info: cibuildwheel host interpreter bump is independent of built wheel targets
The
python-version: 3.14here only selects the interpreter thatpipx runuses to launch cibuildwheel; the set of built wheel ABIs is controlled by cibuildwheel config/CIBW_ARCHS, so the produced artifacts (and the 3.9–3.14 test matrix below) are unaffected. Same reasoning applies to.github/workflows/publish.yml:227.Was this helpful? React with 👍 or 👎 to provide feedback.