diff --git a/ci/code-validation.dockerfile b/ci/code-validation.dockerfile index 11bf098cf8..163600b47a 100644 --- a/ci/code-validation.dockerfile +++ b/ci/code-validation.dockerfile @@ -11,8 +11,7 @@ RUN apt-get update -y && apt-get install -y \ python3-pip \ python-setuptools \ python3-nacl -RUN pip3 install -U \ - pip \ +RUN pip3 install -U \ setuptools \ pep8 \ pep8-naming \ diff --git a/ci/ubuntu.dockerfile b/ci/ubuntu.dockerfile index 4056d4caed..97c5b01417 100644 --- a/ci/ubuntu.dockerfile +++ b/ci/ubuntu.dockerfile @@ -9,8 +9,8 @@ RUN echo "To invalidate cache" RUN apt-get update -y && apt-get install -y \ python3-nacl \ - libindy-crypto=0.2.0 \ - libindy=1.3.1~454 \ + libindy-crypto=0.4.0 \ + libindy=1.3.1~469 \ # rocksdb python wrapper libbz2-dev \ zlib1g-dev \ diff --git a/setup.py b/setup.py index 8f06153655..594dd3a4b9 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ # Load the metadata using exec() so we don't trigger an import of ioflo.__init__ exec(compile(open(METADATA).read(), METADATA, 'exec')) -tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.3.1-dev-454'] +tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.3.1-dev-469'] setup( name='indy-plenum-dev', @@ -54,10 +54,10 @@ 'prompt_toolkit==0.57', 'pygments', 'rlp', 'sha3', 'leveldb', 'ioflo==1.5.4', 'semver', 'base58', 'orderedset', - 'sortedcontainers==1.5.7', 'psutil', 'pip', + 'sortedcontainers==1.5.7', 'psutil', 'pip<10.0.0', 'portalocker==0.5.7', 'pyzmq', 'libnacl==1.6.1', 'six==1.11.0', 'psutil', 'intervaltree', - 'msgpack-python==0.4.6', 'indy-crypto==0.2.0', + 'msgpack-python==0.4.6', 'indy-crypto==0.4.0', 'python-rocksdb==0.6.9'], setup_requires=['pytest-runner'], extras_require={ @@ -74,4 +74,4 @@ 'scripts/udp_sender', 'scripts/udp_receiver', 'scripts/filter_log', 'scripts/log_stats', 'scripts/init_bls_keys'] -) \ No newline at end of file +)