Browse Source
maybe fixes https://github.com/spesmilo/electrum/issues/7640 Looks like by default pip is ignoring the locally available setuptools and wheel, and downloading the latest ones from the internet at build time... https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/?highlight=no-build-isolation#disabling-build-isolation https://stackoverflow.com/a/62889268 > When making build requirements available, pip does so in an isolated environment. That is, pip does not install those requirements into the user’s site-packages, but rather installs them in a temporary directory which it adds to the user’s sys.path for the duration of the build. This ensures that build requirements are handled independently of the user’s runtime environment. For example, a project that needs a recent version of setuptools to build can still be installed, even if the user has an older version installed (and without silently replacing that version). > > In certain cases, projects (or redistributors) may have workflows that explicitly manage the build environment. For such workflows, build isolation can be problematic. If this is the case, pip provides a --no-build-isolation flag to disable build isolation. Users supplying this flag are responsible for ensuring the build environment is managed appropriately (including ensuring that all required build dependencies are installed). If only it were that easy! If we add the "--no-build-isolation" flag, it becomes our responsibility to install *all* build time deps, hence we now have "requirements-build-makepackages.txt".patch-4
SomberNight
3 years ago
10 changed files with 53 additions and 21 deletions
@ -0,0 +1,21 @@ |
|||
packaging==21.3 \ |
|||
--hash=sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb \ |
|||
--hash=sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522 |
|||
pip==21.3.1 \ |
|||
--hash=sha256:deaf32dcd9ab821e359cd8330786bcd077604b5c5730c0b096eda46f95c24a2d \ |
|||
--hash=sha256:fd11ba3d0fdb4c07fbc5ecbba0b1b719809420f25038f8ee3cd913d3faa3033a |
|||
pyparsing==3.0.7 \ |
|||
--hash=sha256:18ee9022775d270c55187733956460083db60b37d0d0fb357445f3094eed3eea \ |
|||
--hash=sha256:a6c06a88f252e6c322f65faf8f418b16213b51bdfaece0524c1c1bc30c63c484 |
|||
setuptools==59.6.0 \ |
|||
--hash=sha256:22c7348c6d2976a52632c67f7ab0cdf40147db7789f9aed18734643fe9cf3373 \ |
|||
--hash=sha256:4ce92f1e1f8f01233ee9952c04f6b81d1e02939d6e1b488428154974a4d0783e |
|||
setuptools-scm==6.4.2 \ |
|||
--hash=sha256:6833ac65c6ed9711a4d5d2266f8024cfa07c533a0e55f4c12f6eff280a5a9e30 \ |
|||
--hash=sha256:acea13255093849de7ccb11af9e1fb8bde7067783450cee9ef7a93139bddf6d4 |
|||
tomli==1.2.3 \ |
|||
--hash=sha256:05b6166bff487dc068d322585c7ea4ef78deed501cc124060e0f238e89a9231f \ |
|||
--hash=sha256:e3069e4be3ead9668e21cb9b074cd948f7b3113fd9c8bba083f48247aab8b11c |
|||
wheel==0.37.1 \ |
|||
--hash=sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a \ |
|||
--hash=sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4 |
@ -1,9 +0,0 @@ |
|||
pip==21.3.1 \ |
|||
--hash=sha256:deaf32dcd9ab821e359cd8330786bcd077604b5c5730c0b096eda46f95c24a2d \ |
|||
--hash=sha256:fd11ba3d0fdb4c07fbc5ecbba0b1b719809420f25038f8ee3cd913d3faa3033a |
|||
setuptools==59.6.0 \ |
|||
--hash=sha256:22c7348c6d2976a52632c67f7ab0cdf40147db7789f9aed18734643fe9cf3373 \ |
|||
--hash=sha256:4ce92f1e1f8f01233ee9952c04f6b81d1e02939d6e1b488428154974a4d0783e |
|||
wheel==0.37.1 \ |
|||
--hash=sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a \ |
|||
--hash=sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4 |
@ -0,0 +1,14 @@ |
|||
# This file contains build-time dependencies needed to be able to build our pure python dependencies. |
|||
# For reproducibility, some build-time deps, most notably "wheel", need to be pinned. (see #7640) |
|||
# By default, when doing e.g. "pip install", pip downloads the latest version of wheel (and setuptools, etc), |
|||
# regardless whether a sufficiently recent version of wheel is already installed locally... |
|||
# The only way I have found to avoid this, is to use the "--no-build-isolation" flag, |
|||
# in which case it becomes our responsibility to install *all* build time deps... |
|||
|
|||
pip |
|||
setuptools |
|||
wheel |
|||
|
|||
# importlib_metadata also needs: |
|||
# https://github.com/python/importlib_metadata/blob/1e2381fe101fd70742a0171e51c1be82aedf519b/pyproject.toml#L2 |
|||
setuptools_scm[toml]>=3.4.1 |
@ -1,4 +0,0 @@ |
|||
# need modern versions of pip (and maybe other build tools), the one in apt had issues |
|||
pip |
|||
setuptools |
|||
wheel |
Loading…
Reference in new issue