diff --git a/Dockerfile b/Dockerfile index 05a08b2..d923976 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/include/table_exports.py b/include/table_exports.py index af2f66a..c5f5db0 100644 --- a/include/table_exports.py +++ b/include/table_exports.py @@ -1,4 +1,5 @@ "Configuration of tables to export in cratedb_table_export DAG" + TABLES = [ { "table": "telegraf.metrics", diff --git a/setup.py b/setup.py index 5b50e5b..5bde81c 100644 --- a/setup.py +++ b/setup.py @@ -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", ], }, ) diff --git a/tests/dag_import_test.py b/tests/dag_import_test.py index b61b564..9b0e0ea 100644 --- a/tests/dag_import_test.py +++ b/tests/dag_import_test.py @@ -1,4 +1,5 @@ "Global DAG import test to identify syntax or dependency issues" + from airflow.models import DagBag