This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 4f2486f07093a0d4b44419797d067737c58abdb1 Author: Kaxil Naik <[email protected]> AuthorDate: Fri Aug 20 19:42:03 2021 +0100 Bump `pip` version to `21.2.4` (#17746) Updates `pip` version from `21.2.2` to `21.2.4` (cherry picked from commit ebf3b4a5b593fb30196cabf4814e6af8b97738cd) --- Dockerfile | 2 +- Dockerfile.ci | 2 +- IMAGES.rst | 2 +- docs/docker-stack/build-arg-ref.rst | 2 +- scripts/ci/libraries/_initialization.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 210918c..00ae238 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ ARG AIRFLOW_GID="50000" ARG PYTHON_BASE_IMAGE="python:3.6-slim-buster" -ARG AIRFLOW_PIP_VERSION=21.2.2 +ARG AIRFLOW_PIP_VERSION=21.2.4 ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow" # By default PIP has progress bar but you can disable it. diff --git a/Dockerfile.ci b/Dockerfile.ci index 8d599db..6267770 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -218,7 +218,7 @@ ARG AIRFLOW_PRE_CACHED_PIP_PACKAGES="true" # By default in the image, we are installing all providers when installing from sources ARG INSTALL_PROVIDERS_FROM_SOURCES="true" ARG INSTALL_FROM_PYPI="true" -ARG AIRFLOW_PIP_VERSION=21.2.2 +ARG AIRFLOW_PIP_VERSION=21.2.4 # Setup PIP # By default PIP install run without cache to make image smaller ARG PIP_NO_CACHE_DIR="true" diff --git a/IMAGES.rst b/IMAGES.rst index a1b1ace..2f121c7 100644 --- a/IMAGES.rst +++ b/IMAGES.rst @@ -492,7 +492,7 @@ The following build arguments (``--build-arg`` in docker build command) can be u | ``ADDITIONAL_RUNTIME_APT_ENV`` | | Additional env variables defined | | | | when installing runtime deps | +------------------------------------------+------------------------------------------+------------------------------------------+ -| ``AIRFLOW_PIP_VERSION`` | ``21.1`` | PIP version used. | +| ``AIRFLOW_PIP_VERSION`` | ``21.2.4`` | PIP version used. | +------------------------------------------+------------------------------------------+------------------------------------------+ | ``PIP_PROGRESS_BAR`` | ``on`` | Progress bar for PIP installation | +------------------------------------------+------------------------------------------+------------------------------------------+ diff --git a/docs/docker-stack/build-arg-ref.rst b/docs/docker-stack/build-arg-ref.rst index 2175ef7..420ea94 100644 --- a/docs/docker-stack/build-arg-ref.rst +++ b/docs/docker-stack/build-arg-ref.rst @@ -45,7 +45,7 @@ Those are the most common arguments that you use when you want to build a custom +------------------------------------------+------------------------------------------+---------------------------------------------+ | ``AIRFLOW_USER_HOME_DIR`` | ``/home/airflow`` | Home directory of the Airflow user. | +------------------------------------------+------------------------------------------+---------------------------------------------+ -| ``AIRFLOW_PIP_VERSION`` | ``21.1`` | PIP version used. | +| ``AIRFLOW_PIP_VERSION`` | ``21.2.4`` | PIP version used. | +------------------------------------------+------------------------------------------+---------------------------------------------+ | ``PIP_PROGRESS_BAR`` | ``on`` | Progress bar for PIP installation | +------------------------------------------+------------------------------------------+---------------------------------------------+ diff --git a/scripts/ci/libraries/_initialization.sh b/scripts/ci/libraries/_initialization.sh index a51cdd0..d392d98 100644 --- a/scripts/ci/libraries/_initialization.sh +++ b/scripts/ci/libraries/_initialization.sh @@ -402,7 +402,7 @@ function initialization::initialize_image_build_variables() { export INSTALLED_PROVIDERS export INSTALLED_EXTRAS="async,amazon,celery,cncf.kubernetes,docker,dask,elasticsearch,ftp,grpc,hashicorp,http,imap,ldap,google,microsoft.azure,mysql,postgres,redis,sendgrid,sftp,slack,ssh,statsd,virtualenv" - AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION:="21.2.2"} + AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION:="21.2.4"} export AIRFLOW_PIP_VERSION # We also pin version of wheel used to get consistent builds
