Skip to content

Commit 0a88e21

Browse files
fab depends on apache-airflow 3.0.2
1 parent 2cebc93 commit 0a88e21

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

providers/fab/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ license-files = ["NOTICE", "*/LICENSE*"]
5757
# Make sure to run ``breeze static-checks --type update-providers-dependencies --all-files``
5858
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
5959
dependencies = [
60-
"apache-airflow>=3.0.0",
60+
"apache-airflow>=3.0.2",
6161
"apache-airflow-providers-common-compat>=1.2.1",
6262
# Blinker use for signals in Flask, this is an optional dependency in Flask 2.2 and lower.
6363
# In Flask 2.3 it becomes a mandatory dependency, and flask signals are always available.

providers/fab/src/airflow/providers/fab/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
__version__ = "2.0.3"
3333

3434
if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
35-
"3.0.0"
35+
"3.0.2"
3636
):
3737
raise RuntimeError(
38-
f"The package `apache-airflow-providers-fab:{__version__}` needs Apache Airflow 3.0.0+"
38+
f"The package `apache-airflow-providers-fab:{__version__}` needs Apache Airflow 3.0.2+"
3939
)

0 commit comments

Comments
 (0)