-
Notifications
You must be signed in to change notification settings - Fork 16.3k
Remove azure-storage hack #13861
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove azure-storage hack #13861
Conversation
|
cc: @ephraimbuddy |
After apache#12188 has been merged and constraints regenerated, we can now remove the hack where we had to reinstall azure-storage to override overlapping versions of azure-storage libraries. This paves the way to removing last dependency hacks we have in Airflow.
574d4c8 to
a506ce9
Compare
| ARG AIRFLOW_BUILD_EPOCH="1" | ||
| ENV AIRFLOW_BUILD_EPOCH=${AIRFLOW_CI_BUILD_EPOCH} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't it be one of the following two:
| ARG AIRFLOW_BUILD_EPOCH="1" | |
| ENV AIRFLOW_BUILD_EPOCH=${AIRFLOW_CI_BUILD_EPOCH} | |
| ARG AIRFLOW_CI_BUILD_EPOCH="1" | |
| ENV AIRFLOW_CI_BUILD_EPOCH=${AIRFLOW_CI_BUILD_EPOCH} |
or
| ARG AIRFLOW_BUILD_EPOCH="1" | |
| ENV AIRFLOW_BUILD_EPOCH=${AIRFLOW_CI_BUILD_EPOCH} | |
| ARG AIRFLOW_BUILD_EPOCH="1" | |
| ENV AIRFLOW_BUILD_EPOCH=${AIRFLOW_BUILD_EPOCH} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Technically it doesn't matter for cache burst but for consistency
feluelle
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
The PR most likely needs to run full matrix of tests because it modifies parts of the core of Airflow. However, committers might decide to merge it quickly and take the risk. If they don't merge it quickly - please rebase it to the latest master at your convenience, or amend the last commit of the PR, and push it with --force-with-lease. |
|
Closing in favour of #14102 |
After #12188 has been merged and constraints regenerated, we can
now remove the hack where we had to reinstall azure-storage to
override overlapping versions of azure-storage libraries.
This paves the way to removing last dependency hacks we have in
Airflow.
^ Add meaningful description above
Read the Pull Request Guidelines for more information.
In case of fundamental code change, Airflow Improvement Proposal (AIP) is needed.
In case of a new dependency, check compliance with the ASF 3rd Party License Policy.
In case of backwards incompatible changes please leave a note in UPDATING.md.