Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Upgrade Airflow to v2.3.3 #664

Merged
merged 2 commits into from
Aug 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/airflow/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ RUN useradd -m -d ${AIRFLOW_HOME} airflow && \
chown airflow:airflow ${OUTPUT_DIR}
USER airflow

ARG AIRFLOW_VERSION=2.3.0
ARG AIRFLOW_VERSION=2.3.3
WORKDIR ${AIRFLOW_HOME}
# Always add the prod req because the dev reqs depend on it for deduplication
COPY ${REQUIREMENTS_FILE} requirements_prod.txt ${AIRFLOW_HOME}/
COPY docker/airflow/wait_for_db.py /opt/airflow/

# https://airflow.apache.org/docs/apache-airflow/stable/installation/installing-from-pypi.html#constraints-files
ARG CONSTRAINTS_FILE="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-3.9.txt"
ARG CONSTRAINTS_FILE="https://raw.githubusercontent.com/apache/airflow/constraints-${AIRFLOW_VERSION}/constraints-3.10.txt"

RUN pip install --user -r ${REQUIREMENTS_FILE} -c ${CONSTRAINTS_FILE}

Expand Down
2 changes: 1 addition & 1 deletion requirements_prod.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apache-airflow[amazon,postgres,http]==2.3.0
apache-airflow[amazon,postgres,http]==2.3.3
lxml
psycopg2-binary
requests-file==1.5.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def test_fails_if_external_dag_missing_sensor_task(self):
# TODO: warnings for...(drumroll) Airflow operators 🙃 hopefully this is
# TODO: fixed in 2.2.5 or something.
# TODO: Update: 2022-05-06/v2.3.0, still an issue!
# TODO: Update: 2022-08-15/v2.3.3, Still an issue (MJSB)
warnings.simplefilter("ignore", category=DeprecationWarning)
dagbag = DagBag(dag_folder=DEV_NULL, include_examples=True)
bash_dag = dagbag.dags["example_bash_operator"]
Expand Down