[sonic-slave]: Fix redis version during pip3 install (#9317)

The recent release of redis 4.0.0 or newer (for python3) breaks sonic-config-engine unit test. Fix to last known good version.
ref: https://pypi.org/project/redis/#history
This commit is contained in:
Qi Luo
2021-11-18 17:07:58 -08:00
committed by GitHub
parent fba7a7f389
commit da1503d7be
3 changed files with 3 additions and 3 deletions

View File

@@ -444,7 +444,7 @@ RUN pip3 install "PyYAML==5.4.1"
RUN pip3 install "lxml==4.6.2"
# For sonic-platform-common testing
RUN pip3 install redis
RUN pip3 install redis==3.5.3
# For vs image build
RUN pip3 install pexpect==4.8.0

View File

@@ -457,7 +457,7 @@ RUN pip2 install "lxml==4.6.2"
RUN pip3 install "lxml==4.6.2"
# For sonic-platform-common testing
RUN pip3 install redis
RUN pip3 install redis==3.5.3
# For vs image build
RUN pip2 install pexpect==4.6.0

View File

@@ -365,7 +365,7 @@ RUN pip3 install "lxml==4.6.2"
# For sonic-platform-common testing
RUN pip3 install redis
RUN pip3 install redis==3.5.3
# For vs image build
RUN pip2 install pexpect==4.6.0