From 2e6cbd26fdc45c714f6c63e1f3f6d3c5d517db64 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Thu, 16 Jul 2020 11:32:16 +0300 Subject: python: fix patch --- extra/python/patches/python3-always-pip.patch | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'extra/python') diff --git a/extra/python/patches/python3-always-pip.patch b/extra/python/patches/python3-always-pip.patch index 91789c98..a228bd6b 100644 --- a/extra/python/patches/python3-always-pip.patch +++ b/extra/python/patches/python3-always-pip.patch @@ -1,13 +1,13 @@ diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py -index 526dfd0..d85dc33 100644 +index f3152a5..52f6312 100644 --- a/Lib/ensurepip/__init__.py +++ b/Lib/ensurepip/__init__.py -@@ -104,7 +104,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False, +@@ -116,7 +116,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False, additional_paths.append(os.path.join(tmpdir, wheel_name)) # Construct the arguments to be passed to the pip command -- args = ["install", "--no-index", "--find-links", tmpdir] -+ args = ["install", "-I", "--no-index", "--find-links", tmpdir] +- args = ["install", "--no-cache-dir", "--no-index", "--find-links", tmpdir] ++ args = ["install", "-I", "--no-cache-dir", "--no-index", "--find-links", tmpdir] if root: args += ["--root", root] if upgrade: -- cgit v1.2.3