Skip to content
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
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:12.6.0-python-3.12
FROM quay.io/astronomer/astro-runtime:12.7.1-python-3.12
1 change: 1 addition & 0 deletions include/table_exports.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"Configuration of tables to export in cratedb_table_export DAG"

TABLES = [
{
"table": "telegraf.metrics",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
name="crate-airflow-tutorial",
packages=find_packages(),
python_requires=">=3.12",
install_requires=["apache-airflow==2.10.4"],
install_requires=["apache-airflow==2.10.5"],
extras_require={
"develop": [
"pylint==3.3.4",
"black==25.1.0",
],
"testing": [
"pytest==8.3.4",
"pytest==8.3.5",
],
},
)
1 change: 1 addition & 0 deletions tests/dag_import_test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"Global DAG import test to identify syntax or dependency issues"

from airflow.models import DagBag


Expand Down