1
0

build: (reproducibility) always uses "pip install" with "--no-build-isolation"

fixes https://github.com/spesmilo/electrum/issues/7737
fixes https://github.com/spesmilo/electrum/issues/7736
related 8559d1eb72
This commit is contained in:
SomberNight
2022-03-26 02:12:12 +01:00
parent 859bd15356
commit 98d32f41d5
9 changed files with 40 additions and 23 deletions

View File

@@ -1,4 +1,5 @@
# This file contains build-time dependencies needed to be able to build our pure python dependencies.
# This file contains build-time dependencies needed to build other higher level build-time dependencies
# and runtime 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...