ci: imgtool: drop PyPy 3.9 and 3.10 from the test matrix#2716
Open
d3zd3z wants to merge 1 commit intomcu-tools:mainfrom
Open
ci: imgtool: drop PyPy 3.9 and 3.10 from the test matrix#2716d3zd3z wants to merge 1 commit intomcu-tools:mainfrom
d3zd3z wants to merge 1 commit intomcu-tools:mainfrom
Conversation
cryptography 47.0.0 (released April 2026) bumps its PyO3 minimum
supported PyPy version to 3.11. Pip-installing imgtool's deps on
PyPy 3.9 or 3.10 now fails during the cryptography wheel build
with
error: the configured PyPy interpreter version (3.10) is lower
than PyO3's minimum supported version (3.11)
so every PR run against this workflow fails on those two matrix
entries. The matrix that landed in 95a6e38 ("imgtool: python
version coverage") was green at the time because it ran against
cryptography 46.x; the next push exposed the issue.
Drop pypy3.9 and pypy3.10 from the matrix, keep pypy3.11. CPython
coverage is unchanged.
Assisted-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: David Brown <david.brown@linaro.org>
Member
Author
|
@JPHutchins Looks like right after your change merged, a new This will likely provoke the failure, because the workflow files run from |
JPHutchins
approved these changes
Apr 27, 2026
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Updates the imgtool CI workflow to stop testing on PyPy versions that can no longer install dependencies after cryptography 47.0.0 raised the minimum supported PyPy version required by PyO3.
Changes:
- Remove
pypy3.9andpypy3.10from the workflow matrix - Keep
pypy3.11in the PyPy test coverage while leaving CPython versions unchanged
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
nordicjm
approved these changes
Apr 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
cryptography 47.0.0 (released April 2026) bumps its PyO3 minimum supported PyPy version to 3.11. Pip-installing imgtool's deps on PyPy 3.9 or 3.10 now fails during the cryptography wheel build with
error: the configured PyPy interpreter version (3.10) is lower
than PyO3's minimum supported version (3.11)
so every PR run against this workflow fails on those two matrix entries. The matrix that landed in 95a6e38 ("imgtool: python version coverage") was green at the time because it ran against cryptography 46.x; the next push exposed the issue.
Drop pypy3.9 and pypy3.10 from the matrix, keep pypy3.11. CPython coverage is unchanged.
Assisted-By: Claude Opus 4.7 (1M context) noreply@anthropic.com