Skip to content

Commit

Permalink
Fix eager upgrade typo (apache#14694)
Browse files Browse the repository at this point in the history
After recent snowflake provider upgrade (apache#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.
  • Loading branch information
potiuk authored Mar 10, 2021
1 parent 923bde2 commit 1d743f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 1d743f3

Please sign in to comment.