This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 16ebb88656 Update to just-released `pip` 22.2.2 (#25519)
16ebb88656 is described below

commit 16ebb8865643bd64eb14b8a309956ac55b7e3f3c
Author: Jarek Potiuk <[email protected]>
AuthorDate: Wed Aug 3 22:00:41 2022 +0200

    Update to just-released `pip` 22.2.2 (#25519)
---
 Dockerfile                              | 4 ++--
 Dockerfile.ci                           | 4 ++--
 IMAGES.rst                              | 2 +-
 docs/docker-stack/build-arg-ref.rst     | 2 +-
 scripts/ci/libraries/_initialization.sh | 2 +-
 scripts/docker/common.sh                | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 7f9b4d4578..273f8de939 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -48,7 +48,7 @@ ARG AIRFLOW_VERSION="2.3.3"
 
 ARG PYTHON_BASE_IMAGE="python:3.7-slim-bullseye"
 
-ARG AIRFLOW_PIP_VERSION=22.2.1
+ARG AIRFLOW_PIP_VERSION=22.2.2
 ARG AIRFLOW_IMAGE_REPOSITORY="https://github.com/apache/airflow";
 ARG 
AIRFLOW_IMAGE_README_URL="https://raw.githubusercontent.com/apache/airflow/main/docs/docker-stack/README.md";
 
@@ -368,7 +368,7 @@ function common::get_airflow_version_specification() {
 function common::override_pip_version_if_needed() {
     if [[ -n ${AIRFLOW_VERSION} ]]; then
         if [[ ${AIRFLOW_VERSION} =~ ^2\.0.* || ${AIRFLOW_VERSION} =~ ^1\.* ]]; 
then
-            export AIRFLOW_PIP_VERSION="22.2.1"
+            export AIRFLOW_PIP_VERSION="22.2.2"
         fi
     fi
 }
diff --git a/Dockerfile.ci b/Dockerfile.ci
index 13254715d4..b57b726af6 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -328,7 +328,7 @@ function common::get_airflow_version_specification() {
 function common::override_pip_version_if_needed() {
     if [[ -n ${AIRFLOW_VERSION} ]]; then
         if [[ ${AIRFLOW_VERSION} =~ ^2\.0.* || ${AIRFLOW_VERSION} =~ ^1\.* ]]; 
then
-            export AIRFLOW_PIP_VERSION="22.2.1"
+            export AIRFLOW_PIP_VERSION="22.2.2"
         fi
     fi
 }
@@ -1119,7 +1119,7 @@ ARG AIRFLOW_CI_BUILD_EPOCH="3"
 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 AIRFLOW_PIP_VERSION=22.2.1
+ARG AIRFLOW_PIP_VERSION=22.2.2
 # 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 6883c64a47..7cd59612ae 100644
--- a/IMAGES.rst
+++ b/IMAGES.rst
@@ -477,7 +477,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``                  | ``22.2.1``                        
       | PIP version used.                        |
+| ``AIRFLOW_PIP_VERSION``                  | ``22.2.2``                        
       | 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 c7a0a14772..6c04009cb5 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``                  | ``22.2.1``                        
       |  PIP version used.                          |
+| ``AIRFLOW_PIP_VERSION``                  | ``22.2.2``                        
       |  PIP version used.                          |
 
+------------------------------------------+------------------------------------------+---------------------------------------------+
 | ``ADDITIONAL_PIP_INSTALL_FLAGS``         |                                   
       | additional ``pip`` flags passed to the      |
 |                                          |                                   
       | installation commands (except when          |
diff --git a/scripts/ci/libraries/_initialization.sh 
b/scripts/ci/libraries/_initialization.sh
index 9b3d759bf4..d0d6a788fd 100644
--- a/scripts/ci/libraries/_initialization.sh
+++ b/scripts/ci/libraries/_initialization.sh
@@ -403,7 +403,7 @@ function initialization::initialize_image_build_variables() 
{
 
     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:="22.2.1"}
+    AIRFLOW_PIP_VERSION=${AIRFLOW_PIP_VERSION:="22.2.2"}
     export AIRFLOW_PIP_VERSION
 
     # We also pin version of wheel used to get consistent builds
diff --git a/scripts/docker/common.sh b/scripts/docker/common.sh
index d32ac3bddc..3dc414ab97 100644
--- a/scripts/docker/common.sh
+++ b/scripts/docker/common.sh
@@ -42,7 +42,7 @@ function common::get_airflow_version_specification() {
 function common::override_pip_version_if_needed() {
     if [[ -n ${AIRFLOW_VERSION} ]]; then
         if [[ ${AIRFLOW_VERSION} =~ ^2\.0.* || ${AIRFLOW_VERSION} =~ ^1\.* ]]; 
then
-            export AIRFLOW_PIP_VERSION="22.2.1"
+            export AIRFLOW_PIP_VERSION="22.2.2"
         fi
     fi
 }

Reply via email to