Skip to content
This repository was archived by the owner on Feb 1, 2024. It is now read-only.

Commit f2651ff

Browse files
authored
Merge pull request #32 from Cargill/rbb-fix-mistune-docs-error
Pin mistune version to fix doc build error
2 parents 9ce6d0b + e1048b2 commit f2651ff

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ci/sawtooth-build-docs

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ RUN echo "deb [arch=amd64] http://repo.sawtooth.me/ubuntu/ci bionic universe" >>
7979
&& rm -rf /var/lib/apt/lists/* \
8080
&& pip3 install \
8181
pylint \
82-
bandit
82+
bandit==1.7.1
8383

8484

8585
ENV DEBIAN_FRONTEND=noninteractive
@@ -98,6 +98,7 @@ RUN apt-get update && apt-get install -y -q \
9898
&& rm -rf /var/lib/apt/lists/* \
9999
&& pip3 install \
100100
docutils==0.16 \
101+
mistune==0.8.4 \
101102
sphinx==2.0.1 \
102103
sphinxcontrib-httpdomain \
103104
sphinxcontrib-openapi \

docker/bandit

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN apt-get install -y -q \
2626
python3-dev \
2727
python3-pip \
2828
&& pip3 install \
29-
bandit \
29+
bandit==1.7.1 \
3030
coverage --upgrade
3131

3232
ENV PATH=$PATH:/project/sawtooth-sdk-python/bin

docker/lint

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ RUN apt-get install -y -q \
4444
&& pip3 install \
4545
pylint==2.6.2 \
4646
pycodestyle \
47-
bandit \
47+
bandit==1.7.1 \
4848
coverage --upgrade
4949

5050
RUN apt-get install -y -q \

0 commit comments

Comments
 (0)