[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-21 Thread STINNER Victor
Change by STINNER Victor : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-20 Thread STINNER Victor
STINNER Victor added the comment: New changeset 75e59a97f5d1fddb0c30ed9747b1b8cb84420a62 by Victor Stinner in branch 'master': bpo-42856: Add --with-wheel-pkg-dir=PATH configure option (GH-24210) https://github.com/python/cpython/commit/75e59a97f5d1fddb0c30ed9747b1b8cb84420a62 --

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-13 Thread Miro Hrončok
Miro Hrončok added the comment: In Fedora, we update the wheels independently without rebuilding Python. What incredible convoluted constructs do you have in mind in particular? -- ___ Python tracker

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-13 Thread Matej Cepl
Matej Cepl added the comment: We (SUSE) have updated versions of the wheels as special Sources, and then this in the %prep stage of our SPEC file: # Replace bundled wheels with the updates ones rm -v Lib/ensurepip/_bundled/*.whl cp -v %{SOURCE20} %{SOURCE21}

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-13 Thread Matej Cepl
Change by Matej Cepl : -- nosy: +mcepl ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-13 Thread STINNER Victor
STINNER Victor added the comment: > For simplicity, I would avoid mixing wheels from 2 different directories. Right. I wrote PR 24210 which is simpler. It either uses bundled wheels, or wheels from the directory. -- ___ Python tracker

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-13 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +23037 pull_request: https://github.com/python/cpython/pull/24210 ___ Python tracker ___

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-07 Thread STINNER Victor
Change by STINNER Victor : -- keywords: +patch pull_requests: +22979 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24151 ___ Python tracker ___

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-07 Thread Christian Heimes
Change by Christian Heimes : -- nosy: +christian.heimes, dstufft, ncoghlan, pradyunsg ___ Python tracker ___ ___ Python-bugs-list

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-07 Thread Miro Hrončok
Miro Hrončok added the comment: For simplicity, I would avoid mixing wheels from 2 different directories. -- nosy: +hroncok ___ Python tracker ___

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-07 Thread STINNER Victor
STINNER Victor added the comment: > If used, ensurepip will only use wheel packages from this directory. An alternative is to find packages in all directories and pick the most recent version. Example with a specified directory *and* ensurepip._bundled is available: * wheel package

[issue42856] ensurepip: add configure --with-wheel-pkg-dir=PATH to get wheel packages from a system directory

2021-01-07 Thread STINNER Victor
New submission from STINNER Victor : The Fedora packaging policy recommends to "unbundle" bundled dependencies. "Fedora packages SHOULD make every effort to avoid having multiple, separate, upstream projects bundled together in a single package."