pin dependency versions

This commit is contained in:
Lex Berezhny 2019-02-26 15:33:14 -05:00
parent 9e4c1120fa
commit bd2512c27e

View file

@ -9,15 +9,16 @@ with open(os.path.join(BASE, 'README.md'), encoding='utf-8') as fh:
long_description = fh.read() long_description = fh.read()
REQUIRES = [ REQUIRES = [
'aiohttp', 'aiohttp==3.4.4',
'coincurve', 'cffi==1.12.1', # TODO: 1.12.2 fails on travis in wine
'pbkdf2', 'coincurve==11.0.0',
'cryptography', 'pbkdf2==1.3',
'attrs', 'cryptography==2.5',
'pylru' 'attrs==18.2.0',
'pylru==1.1.0'
] ]
if sys.platform.startswith('linux'): if sys.platform.startswith('linux'):
REQUIRES.append('plyvel') REQUIRES.append('plyvel==1.0.5')
setup( setup(