liferoad commented on code in PR #35694: URL: https://github.com/apache/beam/pull/35694#discussion_r2231652688
########## dev-support/docker/Dockerfile: ########## @@ -62,12 +62,13 @@ ENV LC_ALL en_US.UTF-8 ### # Install grpcio-tools mypy-protobuf for `python3 sdks/python/setup.py sdist` to work ### -RUN pip3 install grpcio-tools mypy-protobuf +RUN pip3 install --break-system-packages grpcio-tools mypy-protobuf ### # Install useful tools # Install distlib to avoid https://github.com/pypa/virtualenv/issues/2006 -RUN pip3 install distlib==0.3.1 yapf==0.29.0 pytest +# Specify the version of pluggy to fix it to the version installed on the system. +RUN pip3 install --break-system-packages distlib==0.3.1 yapf==0.29.0 pytest pluggy==1.4.0 Review Comment: From my dev env, i have this: yapf==0.43.0 distlib==0.3.9 pluggy==1.5.0. Do you need to update them? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
