From 2d4c4c268de12b141cb2066d3a9323326f1fefd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Jun 2024 09:19:52 +0200 Subject: [PATCH] Bump apache-airflow from 2.9.1 to 2.9.2 (#144) * Bump apache-airflow from 2.9.1 to 2.9.2 Bumps [apache-airflow](https://github.com/apache/airflow) from 2.9.1 to 2.9.2. - [Release notes](https://github.com/apache/airflow/releases) - [Changelog](https://github.com/apache/airflow/blob/main/RELEASE_NOTES.rst) - [Commits](https://github.com/apache/airflow/compare/2.9.1...2.9.2) --- updated-dependencies: - dependency-name: apache-airflow dependency-type: direct:production ... Signed-off-by: dependabot[bot] * Align astro-runtime * Update dependencies --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Niklas Schmidtmer --- Dockerfile | 2 +- setup.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index e972f2d..d64fd30 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1 +1 @@ -FROM quay.io/astronomer/astro-runtime:11.4.0-python-3.12 +FROM quay.io/astronomer/astro-runtime:11.5.0-python-3.12 diff --git a/setup.py b/setup.py index c3f0b0e..474b3fb 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ name="crate-airflow-tutorial", packages=find_packages(), python_requires=">=3.11", - install_requires=["apache-airflow==2.9.1"], + install_requires=["apache-airflow==2.9.2"], extras_require={ "develop": [ - "pylint==3.2.2", + "pylint==3.2.3", "black==24.4.2", ], "testing": [ - "pytest==8.2.1", + "pytest==8.2.2", ], }, )