-
Notifications
You must be signed in to change notification settings - Fork 2
fix: bump CodeBoarding engine to 0.13.11 #117
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 |
|---|---|---|
|
|
@@ -353,7 +353,7 @@ runs: | |
| if: steps.guard.outputs.skip != 'true' | ||
| shell: bash | ||
| run: | | ||
| python -m pip install --disable-pip-version-check 'codeboarding==0.13.10' | ||
| python -m pip install --disable-pip-version-check 'codeboarding==0.13.11' | ||
|
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.
After this pin becomes installable, the README will still state at Useful? React with 👍 / 👎. |
||
| # Fail here, with the reason, rather than mid-analysis with a traceback: | ||
| # pinning a release does not pin what its dependencies resolve to. Run | ||
| # the console script, not `python -c`, which would put the analyzed | ||
|
|
||
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.
When either action mode reaches this step, it installs this exact requirement, but the commit's own merge note states that
codeboarding==0.13.11has not yet been published to PyPI. Every non-skipped action run will therefore stop here, and thecore-compatibilityjob in.github/workflows/test.ymlwill fail at its pinned-release installation before running its checks; publish and verify the distribution before merging, or retain the 0.13.10 pin.AGENTS.md reference: AGENTS.md:L12-L16
Useful? React with 👍 / 👎.