From fa2ead002e24e54a62dd9c9be0e77272c9b1e6e3 Mon Sep 17 00:00:00 2001 From: Oleg Silkin Date: Sat, 6 Apr 2019 18:12:03 -0400 Subject: [PATCH] Fixes incompatible attrs issue when running `pip install -e .` --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 444efa633..a4ebfa8d0 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ setup( 'console_scripts': 'lbrynet=lbrynet.extras.cli:main' }, install_requires=[ + 'torba', 'aiohttp==3.5.4', 'aioupnp', 'appdirs==1.4.3', @@ -35,7 +36,6 @@ setup( 'protobuf==3.6.1', 'msgpack==0.6.1', 'ecdsa==0.13', - 'torba', 'pyyaml==4.2b1', 'docopt==0.6.2', 'hachoir',