Skip to content

Commit a7c8a85

Browse files
authored
Merge pull request #653 from anikitinDSR/increment-crypto
Increment crypto
2 parents 4c45a31 + 78ca198 commit a7c8a85

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Diff for: ci/code-validation.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apt-get update -y && apt-get install -y \
1212
python-setuptools \
1313
python3-nacl
1414
RUN pip3 install -U \
15-
pip \
15+
'pip<10.0.0' \
1616
setuptools \
1717
pep8 \
1818
pep8-naming \

Diff for: environment/docker/baseimage/indy-baseimage.ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \
2020

2121
# pypi based packages
2222
RUN pip3 install -U \
23-
pip \
23+
'pip<10.0.0' \
2424
setuptools \
2525
virtualenv
2626

Diff for: environment/docker/pool/core.ubuntu.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ RUN apt-get update -y && apt-get install -y \
1313
apt-transport-https \
1414
ca-certificates
1515
RUN pip3 install -U \
16-
pip \
16+
'pip<10.0.0' \
1717
setuptools
1818
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
1919
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys BD33704C

Diff for: environment/openshift/core.ubuntu.dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN apt-get update -y && apt-get install -y \
1616
ca-certificates
1717

1818
RUN pip3 install -U \
19-
pip \
19+
'pip<10.0.0' \
2020
setuptools
2121

2222
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
@@ -26,4 +26,4 @@ RUN echo "deb https://repo.evernym.com/deb xenial stable" >> /etc/apt/sources.li
2626
RUN echo "deb https://repo.sovrin.org/deb xenial stable" >> /etc/apt/sources.list
2727

2828
RUN useradd -ms /bin/bash -l -u $uid -G $gid indy
29-
RUN apt-get update -y && apt-get install -y indy-node
29+
RUN apt-get update -y && apt-get install -y indy-node

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
LOG_DIR = os.path.join(BASE_DIR, "log")
3737
CONFIG_FILE = os.path.join(BASE_DIR, "indy_config.py")
3838

39-
tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.3.1-dev-454']
39+
tests_require = ['pytest', 'pytest-xdist', 'python3-indy==1.3.1-dev-469']
4040

4141
setup(
4242
name='indy-node',
@@ -56,7 +56,7 @@
5656
data_files=[(
5757
(BASE_DIR, ['data/nssm_original.exe'])
5858
)],
59-
install_requires=['indy-plenum==1.2.38',
59+
install_requires=['indy-plenum==1.2.40',
6060
'indy-anoncreds==1.0.11',
6161
'python-dateutil',
6262
'timeout-decorator'],

0 commit comments

Comments
 (0)