mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-04 21:05:11 +00:00
I no longer trust pip to install packages from a requirements.txt file in the correct order. For reproducibility, let's install pip/setuptools/wheels/cython first. see https://github.com/pypa/pip/issues/2362#issuecomment-418423458 see #5859 and #6382
10 lines
366 B
Text
10 lines
366 B
Text
pip
|
|
setuptools
|
|
wheel
|
|
|
|
# Note: hidapi requires Cython at build-time (not needed at runtime).
|
|
# For reproducible builds, the version of Cython must be pinned down.
|
|
# The pinned Cython must be installed before hidapi is built;
|
|
# otherwise when installing hidapi, pip just downloads the latest Cython.
|
|
# see https://github.com/spesmilo/electrum/issues/5859
|
|
Cython>=0.27
|