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

Commit e1048b2

Browse files
committed
Pin bandit version
The 1.7.2 release of Bandit drops support for python 3.6, which is the latest available for ubuntu bionic. Signed-off-by: Ryan Beck-Buysse <[email protected]>
1 parent 0461e36 commit e1048b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/sawtooth-build-docs

Lines changed: 1 addition & 1 deletion
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

docker/bandit

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)