-
Notifications
You must be signed in to change notification settings - Fork 2
chore(py): start from 3.12 #197
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
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 |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ jobs: | |
| strategy: | ||
| matrix: | ||
| python-version: | ||
| - "3.13" | ||
| - "3.12" | ||
|
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. Critical: Documentation deployment will fail due to matrix mismatch. The docs build matrix only includes Python 3.12, but the deploy condition on line 49 checks for Python 3.13. This mismatch means documentation will never be deployed because no job will satisfy the deployment condition. 🔎 Apply this diff to fix the deploy condition:Update line 49 to match the matrix version: - - name: Deploy docs
- if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' && github.event_name == 'push' && github.ref == 'refs/heads/master'
- run: uv run mkdocs gh-deploy --force
+ - name: Deploy docs
+ if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12' && github.event_name == 'push' && github.ref == 'refs/heads/master'
+ run: uv run mkdocs gh-deploy --forceAlternatively, if you want to keep deploying with Python 3.13, add it to the matrix on line 15.
🤖 Prompt for AI Agents |
||
| os: | ||
| - ubuntu-latest | ||
| - macos-latest | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.