Skip to content

Commit 0868c69

Browse files
committed
Fix to remove --no-python-version-warning as its not useful anymore in Python 3.
1 parent fae275f commit 0868c69

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)