perl/Module-Build-Tiny: update to 0.051 for Perl 5.36 and 5.38
[oi-userland.git] / components / python / virtualenv / patches / 02-pip.patch
blob6fba4ce007541cf73e64ef23e2b8790810856560
1 --- virtualenv-20.28.0/tasks/make_zipapp.py.orig
2 +++ virtualenv-20.28.0/tasks/make_zipapp.py
3 @@ -92,7 +92,7 @@
4 into.mkdir(parents=True)
5 self.into = into
6 self.collected = defaultdict(lambda: defaultdict(dict))
7 - self.pip_cmd = [str(Path(sys.executable).parent / "pip")]
8 + self.pip_cmd = ["python", "-m", "pip"]
9 self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--no-cache-dir", "--dest", str(self.into)]
11 def run(self, target, versions):