Browse Source
We were getting a number of incompatibility warning due to the dependencies being expressed too rigidly. This losens the requirement definitions to being compatible with a known good version, and while we're at it we also bump all outdated requirements.master
Christian Decker
4 years ago
committed by
Rusty Russell
5 changed files with 51 additions and 35 deletions
@ -1 +1 @@ |
|||
pyln-client==0.9.3 |
|||
pyln-client ~= 0.9.3 |
|||
|
@ -1 +1 @@ |
|||
recommonmark>=0.6.0 |
|||
recommonmark>=0.7.* |
|||
|
@ -1,6 +1,6 @@ |
|||
bitstring==3.1.6 |
|||
cryptography==3.2 |
|||
coincurve==13.0.0 |
|||
base58==1.0.2 |
|||
mypy==0.790 |
|||
pysocks==1.7.* |
|||
base58 ~= 2.0.1 |
|||
bitstring ~= 3.1.6 |
|||
coincurve ~= 13.0.0 |
|||
cryptography ~= 3.2 |
|||
mypy ~= 0.790 |
|||
pysocks ~= 1.7.1 |
|||
|
@ -1,9 +1,12 @@ |
|||
pytest==5.* |
|||
pytest-rerunfailures==9.1 |
|||
Flask==1.1.1 |
|||
cheroot==8.2.1 |
|||
Flask==1.1.* |
|||
cheroot==8.5.* |
|||
ephemeral-port-reserve==1.1.1 |
|||
python-bitcoinlib==0.10.2 |
|||
psycopg2-binary==2.8.4 |
|||
filelock==3.0.* |
|||
flaky ~= 3.7.0 |
|||
psutil==5.7.* |
|||
psycopg2-binary==2.8.* |
|||
pytest-rerunfailures==9.1.1 |
|||
pytest-timeout ~= 1.4.2 |
|||
pytest-xdist ~= 2.2.0 |
|||
pytest==6.1.* |
|||
python-bitcoinlib==0.11.* |
|||
|
@ -1,28 +1,41 @@ |
|||
# Dependencies required to build and test c-lightning |
|||
https://github.com/ElementsProject/libwally-core/releases/download/release_0.8.0/wallycore-0.8.0-cp36-cp36m-linux_x86_64.whl; 'linux' in sys_platform and python_version == '3.6' |
|||
https://github.com/ElementsProject/libwally-core/releases/download/release_0.8.0/wallycore-0.8.0-cp37-cp37m-linux_x86_64.whl; 'linux' in sys_platform and python_version == '3.7' |
|||
https://github.com/ElementsProject/libwally-core/releases/download/release_0.8.0/wallycore-0.8.0-cp37-cp37m-macosx_10_14_x86_64.whl; sys_platform == 'darwin' and python_version == '3.7' |
|||
Flask==1.1.1 |
|||
Sphinx==1.8.4 |
|||
base58==1.0.2 |
|||
bitstring==3.1.6 |
|||
cheroot==8.2.1 |
|||
coincurve==13.0.0 |
|||
commonmark==0.8.1 |
|||
cryptography==3.2 |
|||
ephemeral-port-reserve==1.1.1 |
|||
mrkd ~= 0.1.6 |
|||
Mako ~= 1.1.3 |
|||
|
|||
# Dependencies from pyln-client |
|||
Sphinx ~= 3.4.0 |
|||
flake8==3.7.8 |
|||
flaky==3.6.1 |
|||
m2r==0.2.1 |
|||
mako==1.0.14 |
|||
mrkd==0.1.6 |
|||
psycopg2-binary==2.8.4 |
|||
pytest-benchmark==3.2.2 |
|||
pytest-forked==1.0.2 |
|||
pytest-timeout==1.3.3 |
|||
pytest-xdist==1.29.0 |
|||
pytest == 5.* |
|||
python-bitcoinlib==0.10.2 |
|||
recommonmark>=0.6.0 |
|||
recommonmark>=0.7.* |
|||
sphinx-rtd-theme==0.4.2 |
|||
sphinxcontrib-websupport==1.1.0 |
|||
tqdm==4.32.2 |
|||
|
|||
# Dependencies from pyln-testing |
|||
Flask==1.1.* |
|||
cheroot==8.5.* |
|||
ephemeral-port-reserve==1.1.1 |
|||
filelock==3.0.* |
|||
flaky ~= 3.7.0 |
|||
psutil==5.7.* |
|||
psycopg2-binary==2.8.* |
|||
pytest-rerunfailures==9.1.1 |
|||
pytest-timeout ~= 1.4.2 |
|||
pytest-xdist ~= 2.2.0 |
|||
pytest==6.1.* |
|||
python-bitcoinlib==0.11.* |
|||
|
|||
# Dependencies from pyln-proto |
|||
base58 ~= 2.0.1 |
|||
bitstring ~= 3.1.6 |
|||
coincurve ~= 13.0.0 |
|||
cryptography ~= 3.2 |
|||
mypy ~= 0.790 |
|||
pysocks ~= 1.7.1 |
|||
|
|||
# Dependencies from pyln-spec |
|||
# None |
|||
|
|||
|
|||
|
Loading…
Reference in new issue