From bd2512c27ebfa899b50d65c0c68c7e4592cb75f7 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Tue, 26 Feb 2019 15:33:14 -0500 Subject: [PATCH] pin dependency versions --- setup.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 10be21d2a..029b83209 100644 --- a/setup.py +++ b/setup.py @@ -9,15 +9,16 @@ with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh: long_description = fh.read() REQUIRES = [ - 'aiohttp', - 'coincurve', - 'pbkdf2', - 'cryptography', - 'attrs', - 'pylru' + 'aiohttp==3.4.4', + 'cffi==1.12.1', # TODO: 1.12.2 fails on travis in wine + 'coincurve==11.0.0', + 'pbkdf2==1.3', + 'cryptography==2.5', + 'attrs==18.2.0', + 'pylru==1.1.0' ] if sys.platform.startswith('linux'): - REQUIRES.append('plyvel') + REQUIRES.append('plyvel==1.0.5') setup(