Skip to content

Commit 815b0ac

Browse files
Release issue in dev build, version history checking failing for miniconda image in the Build and Push dev workflow (#1329)
* Update devcontainer.json, test * Fix to remove --no-python-version-warning as its not useful anymore in Python 3. * Revert the unnecessary devcontainer.json change --------- Co-authored-by: Daniel Doyle <[email protected]>
1 parent 7992815 commit 815b0ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/src/utils/image-content-extractor.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ function getUserName(imageId) {
284284
}
285285

286286
async function getPipVersionLookup(imageTagOrContainerName, imageId) {
287-
const packageVersionListOutput = await getCommandOutputFromContainer(imageTagOrContainerName, 'pip list --disable-pip-version-check --no-python-version-warning --format json', false, getUserName(imageId));
287+
const packageVersionListOutput = await getCommandOutputFromContainer(imageTagOrContainerName, 'pip list --disable-pip-version-check --format json', false, getUserName(imageId));
288288

289289
const packageVersionList = JSON.parse(packageVersionListOutput);
290290

0 commit comments

Comments
 (0)