You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2021/03/10 14:36:46 UTC

[airflow] branch master updated: Fix eager upgrade typo (#14694)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1d743f3  Fix eager upgrade typo (#14694)
1d743f3 is described below

commit 1d743f333344b4b1c61896a3d3583305579a9819
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Wed Mar 10 15:36:26 2021 +0100

    Fix eager upgrade typo (#14694)
    
    After recent snowflake provider upgrade (#14655), a typo was introduced
    in the urllib that prevented it to upgrade constraints automatically.
    
    This PR restores the correct name of the urllib library.
---
 Dockerfile.ci | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile.ci b/Dockerfile.ci
index ee205db..22d5864 100644
--- a/Dockerfile.ci
+++ b/Dockerfile.ci
@@ -343,7 +343,7 @@ COPY airflow/__init__.py ${AIRFLOW_SOURCES}/airflow/__init__.py
 # * pyOpenSSL: required by snowflake provider https://github.com/snowflakedb/snowflake-connector-python/blob/v2.3.6/setup.py#L201
 # * urllib3<1.26: Required to keep boto3 happy
 # * pyjwt<2.0.0: flask-jwt-extended requires it
-ARG EAGER_UPGRADE_ADDITIONAL_REQUIREMENTS="chardet<4 lazy-object-proxy<1.5.0 pyOpenSSL<20.0.0 purllib3<1.26 pyjwt<2.0.0"
+ARG EAGER_UPGRADE_ADDITIONAL_REQUIREMENTS="chardet<4 lazy-object-proxy<1.5.0 pyOpenSSL<20.0.0 urllib3<1.26 pyjwt<2.0.0"
 ENV EAGER_UPGRADE_ADDITIONAL_REQUIREMENTS=${EAGER_UPGRADE_ADDITIONAL_REQUIREMENTS}
 
 ARG CONTINUE_ON_PIP_CHECK_FAILURE="false"