From 217b8478d6c45927ba43148445a616347f1cb312 Mon Sep 17 00:00:00 2001 From: Alexander Shcherbakov Date: Thu, 28 Sep 2017 21:01:40 +0300 Subject: [PATCH] Update setup.py (#366) * Update setup.py * fix libindy dependency in tests * fix libindy dependency in tests --- ci/ubuntu.dockerfile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/ubuntu.dockerfile b/ci/ubuntu.dockerfile index ad22ce431..58ae0250e 100644 --- a/ci/ubuntu.dockerfile +++ b/ci/ubuntu.dockerfile @@ -25,7 +25,7 @@ RUN echo "deb https://repo.sovrin.org/deb xenial master" >> /etc/apt/sources.lis RUN apt-get update -y RUN apt-get install -y \ python3-charm-crypto -RUN apt-get install -y libindy-crypto +RUN apt-get update -y && apt-get install -y libindy-crypto=0.1.6 RUN useradd -ms /bin/bash -u $uid sovrin USER sovrin RUN virtualenv -p python3.5 /home/sovrin/test diff --git a/setup.py b/setup.py index 5bf609e29..21a16f804 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ def run(self): data_files=[( (BASE_DIR, ['data/nssm_original.exe']) )], - install_requires=['indy-plenum-dev==1.1.135', + install_requires=['indy-plenum-dev==1.1.136', 'indy-anoncreds-dev==1.0.25', 'python-dateutil', 'timeout-decorator'],