-
Notifications
You must be signed in to change notification settings - Fork 604
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
Release issue in dev build, version history checking failing for miniconda image in the Build and Push dev workflow #1329
Merged
ddoyle2017
merged 4 commits into
devcontainers:main
from
Kaniska244:Release_issue_build_qemu
Mar 6, 2025
Merged
Release issue in dev build, version history checking failing for miniconda image in the Build and Push dev workflow #1329
ddoyle2017
merged 4 commits into
devcontainers:main
from
Kaniska244:Release_issue_build_qemu
Mar 6, 2025
Conversation
This file contains 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
Debug console capture without the change for miniconda image.
Debug console capture with the fix
|
Debug console capture for anaconda image with the fix.
|
Debug console capture for python image.
|
Debug console capture for universal image.
|
ddoyle2017
approved these changes
Mar 6, 2025
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.
Thanks for the update!
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.
Ref# https://github.com/devcontainers/internal/issues/254 , pypa/pip#13154
Description: Version history checking failing for miniconda image in the Build and Push dev workflow
Root Cause: This is failing in version history for miniconda image because its running
pip list
with--no-python-version-warning
&--format json
options which would get the list of installed python packages in json format but its getting generated with a warning message as--no-python-version-warning
option will be deprecated in pip 25.1 version & due to the warning message the output of thepip list
didn't get generated as a well-formed json & hence the json parsing error appeared. PFB the sample payload which is getting generated.Changelog: Changes done in ./build/src/utils/image-content-extractor.js file to remove
--no-python-version-warning
option from the pip list command ingetPipVersionLookup
function as this option is a no-op in Python 3 versions.Checklist:
vscdc info
directly from launch.json for all images variants in the images repository.