[redis-py]: Fix redis version during pip3 install (#9329)

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-22 11:06:12 -08:00 committed by GitHub
parent a5bf6fd874
commit 7fb0f3f89f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -426,7 +426,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

@ -354,7 +354,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