Skip to content

Commit 5b90a6e

Browse files
committed
revert obsolete patch
1 parent ac145a2 commit 5b90a6e

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

graalpython/lib-python/3/venv/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,7 @@ def _setup_pip(self, context):
282282
# We run ensurepip in isolated mode to avoid side effects from
283283
# environment vars, the current directory and anything else
284284
# intended for the global Python environment
285-
# Truffle change: the graal python interpreter cannot yet parse grouped flags
286-
# cmd = [context.env_exe, '-Im', 'ensurepip', '--upgrade',
287-
# End Truffle change
288-
cmd = [context.env_exe, '-I', '-m', 'ensurepip', '--upgrade',
285+
cmd = [context.env_exe, '-Im', 'ensurepip', '--upgrade',
289286
'--default-pip']
290287
subprocess.check_output(cmd, stderr=subprocess.STDOUT)
291288

0 commit comments

Comments
 (0)