Skip to content

Commit

Permalink
Adjust pyftpdlib installation for python2 to avoid recent 2.0.0 relea…
Browse files Browse the repository at this point in the history
…se which requires python3.
  • Loading branch information
jonasbardino committed Sep 10, 2024
1 parent cd6a91b commit c4da57e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ RUN if [ "${WITH_PY3}" = "True" ]; then \

# Modules required by grid_ftps
# NOTE: relies on pyOpenSSL and Cryptography from yum/dnf for now
RUN pip2 install pyftpdlib
RUN pip2 install 'pyftpdlib<2.0'
RUN if [ "${WITH_PY3}" = "True" ]; then \
pip3 install pyftpdlib; \
fi;
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.rocky8
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ RUN if [ "${WITH_PY3}" = "True" ]; then \

# Modules required by grid_ftps
# NOTE: relies on pyOpenSSL and Cryptography from yum/dnf for now
RUN pip2 install pyftpdlib
RUN pip2 install 'pyftpdlib<2.0'
RUN if [ "${WITH_PY3}" = "True" ]; then \
pip3 install pyftpdlib; \
fi;
Expand Down

0 comments on commit c4da57e

Please sign in to comment.