Fix jaxonnxruntime_dev CI: upgrade Python 3.9 -> 3.10#120
Merged
Conversation
pytest>=9.0.3 (bumped in #117) requires Python >=3.10. The development Dockerfile was still on python:3.9, causing the Docker build to fail with "No matching distribution found for pytest>=9.0.3". Aligns with the stable Dockerfile which already uses python:3.10. Signed-off-by: Andreas Fehlner <fehlner@arcor.de>
|
strimo378
approved these changes
May 11, 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.



Root cause
PR #117 bumped
pytestto>=9.0.3inrequirements_report.txt, butpytest>=9.0requires Python >=3.10. Thejaxonnxruntime/development/Dockerfilewas still onpython:3.9, so the Docker build step failed with:Fix
Bump base image from
python:3.9topython:3.10, matching the existingstable/Dockerfile.Verification
This is a one-line change identical to what
stable/Dockerfilealready uses.