Skip to content
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

Bump astronomer/astro-runtime from 11.1.0-python-3.11 to 11.2.0-python-3.12 #140

Merged
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 .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
cache: 'pip'

- name: Install dependencies
Expand All @@ -40,7 +40,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
python-version: 3.12
cache: 'pip'

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM quay.io/astronomer/astro-runtime:11.1.0-python-3.11
FROM quay.io/astronomer/astro-runtime:11.2.0-python-3.12
2 changes: 1 addition & 1 deletion dags/data_quality_checks_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def slack_failure_notification(context):
:red_circle: Task Failed.
*Task*: {task_id}
*DAG*: {dag_id}
*Execution Time*: {exec_date}
*Execution Time*: {exec_date}
*Log URL*: {log_url}
"""
failed_alert = SlackWebhookOperator(
Expand Down
1 change: 1 addition & 0 deletions dags/nyc_taxi_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ def format_file_name(ds=None):
copy_csv_staging = SQLExecuteQueryOperator(
task_id="copy_csv_staging",
conn_id="cratedb_connection",
# pylint: disable=C0301
sql=f"""
COPY nyc_taxi.load_trips_staging
FROM 's3://{ACCESS_KEY_ID}:{SECRET_ACCESS_KEY}@{S3_BUCKET}/{formatted_file_date}.csv'
Expand Down