-
Notifications
You must be signed in to change notification settings - Fork 0
Fix setup-python for Python 3.14 #95
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 |
|---|---|---|
|
|
@@ -149,6 +149,7 @@ runs: | |
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: ${{ inputs.python-version }} | ||
| allow-prereleases: true | ||
|
Comment on lines
149
to
+152
|
||
|
|
||
| - name: Install kida | ||
| if: inputs.install == 'true' | ||
|
|
||
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.
The PR description says
allow-prereleases: truewas added to allactions/setup-python@v6andastral-sh/setup-uv@v7steps, but this change only updates the publish workflow (and the composite action). There are other workflows still using these actions withoutallow-prereleases(e.g.,.github/workflows/tests.yml,pages.yml,benchmark-baseline.yml,amp-review.yml,ty.yml). Either update the remaining workflows or adjust the PR description to match the actual scope.