pin dependency versions
This commit is contained in:
parent
9e4c1120fa
commit
bd2512c27e
1 changed files with 8 additions and 7 deletions
15
setup.py
15
setup.py
|
@ -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(
|
||||||
|
|
Loading…
Add table
Reference in a new issue