tvalentyn commented on code in PR #26019: URL: https://github.com/apache/beam/pull/26019#discussion_r1151112468
########## sdks/python/container/Dockerfile: ########## @@ -101,7 +101,7 @@ RUN rm /opt/apache/beam/third_party_licenses/golang/LICENSE COPY target/license_scripts /tmp/license_scripts/ RUN if [ "$pull_licenses" = "true" ] ; then \ - pip install 'pip-licenses<4.0.0' pyyaml tenacity && \ + pip install 'pip-licenses<=4.1.0' pyyaml tenacity && \ Review Comment: using <= in version constraints is almost always wrong, as that excludes newer minor version, and is largely equivalent to ==4.1.0. -- 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]
