From 2609701159d15ac08b71a3d995f486a62819d2d6 Mon Sep 17 00:00:00 2001 From: Hugo Herter Date: Tue, 27 Oct 2020 10:32:03 +0100 Subject: [PATCH] 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ea2d10e..fd66fc8 100644 --- a/setup.py +++ b/setup.py @@ -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",