Accepting request 821413 from home:gmbr3:Active

- Changed bpo-31046_ensurepip_honours_prefix.patch to include fix from py3.8

OBS-URL: https://build.opensuse.org/request/show/821413
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python39?expand=0&rev=11
This commit is contained in:
Tomáš Chvátal 2020-07-17 07:21:45 +00:00 committed by Git OBS Bridge
parent 9809d09b33
commit 012ae3418d
2 changed files with 6 additions and 1 deletions

View File

@ -127,7 +127,7 @@ Co-Authored-By: Xavier de Gaye <xdegaye@gmail.com>
+ ensurepip.bootstrap(prefix="/foo/bar/")
+ self.run_pip.assert_called_once_with(
+ [
+ "install", "--no-index", "--find-links",
+ "install", "--no-cache-dir", "--no-index", "--find-links",
+ unittest.mock.ANY, "--prefix", "/foo/bar/",
+ "setuptools", "pip",
+ ],

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Fri Jul 17 07:07:19 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>
- Changed bpo-31046_ensurepip_honours_prefix.patch to include fix from py3.8
-------------------------------------------------------------------
Thu Jul 16 21:45:50 UTC 2020 - Callum Farmer <callumjfarmer13@gmail.com>