ashb commented on a change in pull request #14368:
URL: https://github.com/apache/airflow/pull/14368#discussion_r580895024
##########
File path: Dockerfile
##########
@@ -190,7 +190,7 @@ ENV AIRFLOW_INSTALL_USER_FLAG="--user"
ENV AIRFLOW_INSTALL_EDITABLE_FLAG=""
# Upgrade to specific PIP version
-RUN pip install --upgrade "pip==${AIRFLOW_PIP_VERSION}"
+RUN pip install --upgrade "pip~=${AIRFLOW_PIP_VERSION}"
Review comment:
https://www.python.org/dev/peps/pep-0440/#compatible-release
`pip~=21.0.1` is equivalent to `piip>=21.0.1, ==21.0.*`
Which from the PR description is not what I think you intended.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]