Fix dependency issue on base58 with pyaleph

pyaleph depends on this version of `py-libp2p` and on `py-substrate-interface`.

`py-substrate-interface` requires `base58>=2.0.1`, which conflicts with the dependency on `base58>=1.0.3,<2.0.0`
in this setup.py.
pull/325/head^2
Hugo Herter 2020-10-27 10:32:03 +01:00 committed by GitHub
parent 5ae8f04c3a
commit 2609701159
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ setuptools.setup(
python_requires=">=3.7,<4",
install_requires=[
"pycryptodome>=3.9.2,<4.0.0",
"base58>=1.0.3,<2.0.0",
"base58==2.0.1",
"pymultihash>=0.8.2",
"multiaddr>=0.0.8,<0.1.0",
"rpcudp>=3.0.0,<4.0.0",