This is an automated email from the ASF dual-hosted git repository.
jscheffl pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 742ce6a8f67 Remove exclusion of yanked version dependencies from
providers (#66857)
742ce6a8f67 is described below
commit 742ce6a8f6722afb67bdc64f7c93eddd39023382
Author: Pratiksha Badheka <[email protected]>
AuthorDate: Tue May 26 03:16:26 2026 +0530
Remove exclusion of yanked version dependencies from providers (#66857)
* remove exclusion of yanked version from providers
* remove unnecessary comment
* removed unnecessary comment from fab and tableau providers
---
providers/fab/docs/index.rst | 2 +-
providers/fab/pyproject.toml | 5 +----
providers/microsoft/azure/docs/index.rst | 8 ++++----
providers/microsoft/azure/pyproject.toml | 3 +--
providers/tableau/docs/index.rst | 2 +-
providers/tableau/pyproject.toml | 4 +---
6 files changed, 9 insertions(+), 15 deletions(-)
diff --git a/providers/fab/docs/index.rst b/providers/fab/docs/index.rst
index 90c64af8af0..0bb6ba1c2cd 100644
--- a/providers/fab/docs/index.rst
+++ b/providers/fab/docs/index.rst
@@ -126,7 +126,7 @@ PIP package Version required
``wtforms`` ``>=3.0``
``cachetools`` ``>=6.0``
``marshmallow`` ``>=3``
-``flask_limiter`` ``>3,!=3.13``
+``flask_limiter`` ``>3``
==========================================
=====================================
Cross provider package dependencies
diff --git a/providers/fab/pyproject.toml b/providers/fab/pyproject.toml
index e733985f199..f0112e8179c 100644
--- a/providers/fab/pyproject.toml
+++ b/providers/fab/pyproject.toml
@@ -97,10 +97,7 @@ dependencies = [
"wtforms>=3.0",
"cachetools>=6.0",
"marshmallow>=3",
-
- #
https://github.com/dpgaspar/Flask-AppBuilder/blob/release/4.6.3/setup.py#L54C8-L54C26
- # with an exclusion to account for
https://github.com/alisaifee/flask-limiter/issues/479
- "flask_limiter>3,!=3.13",
+ "flask_limiter>3",
]
# The optional dependencies should be modified in place in the generated file
diff --git a/providers/microsoft/azure/docs/index.rst
b/providers/microsoft/azure/docs/index.rst
index 41099e8b8bf..190949cf608 100644
--- a/providers/microsoft/azure/docs/index.rst
+++ b/providers/microsoft/azure/docs/index.rst
@@ -104,9 +104,9 @@ Requirements
The minimum Apache Airflow version supported by this provider distribution is
``2.11.0``.
-========================================== ===========================
+========================================== ===================
PIP package Version required
-========================================== ===========================
+========================================== ===================
``apache-airflow`` ``>=2.11.0``
``apache-airflow-providers-common-compat`` ``>=1.13.0``
``adlfs`` ``>=2023.10.0``
@@ -125,7 +125,7 @@ PIP package Version required
``azure-synapse-spark`` ``>=0.2.0``
``azure-synapse-artifacts`` ``>=0.17.0``
``azure-storage-file-datalake`` ``>=12.9.1``
-``azure-kusto-data`` ``>=4.1.0,!=4.6.0,!=5.0.0``
+``azure-kusto-data`` ``>=4.1.0,!=5.0.0``
``azure-mgmt-datafactory`` ``>=2.0.0``
``azure-mgmt-containerregistry`` ``>=8.0.0``
``azure-mgmt-compute`` ``>=33.0.0``
@@ -138,7 +138,7 @@ PIP package Version required
``microsoft-kiota-abstractions`` ``>=1.9.4,<2.0.0``
``microsoft-kiota-authentication-azure`` ``>=1.9.4,<2.0.0``
``msal-extensions`` ``>=1.3.0``
-========================================== ===========================
+========================================== ===================
Cross provider package dependencies
-----------------------------------
diff --git a/providers/microsoft/azure/pyproject.toml
b/providers/microsoft/azure/pyproject.toml
index ae3785611fc..a88de1c50e2 100644
--- a/providers/microsoft/azure/pyproject.toml
+++ b/providers/microsoft/azure/pyproject.toml
@@ -79,9 +79,8 @@ dependencies = [
"azure-synapse-spark>=0.2.0",
"azure-synapse-artifacts>=0.17.0",
"azure-storage-file-datalake>=12.9.1",
- # azure-kusto-data 4.6.0 breaks main - see
https://github.com/apache/airflow/issues/42575
# azure-kusto-data 5.0.0 pins requests to a specific version which makes
resolving dependencies harder
- "azure-kusto-data>=4.1.0,!=4.6.0,!=5.0.0",
+ "azure-kusto-data>=4.1.0,!=5.0.0",
"azure-mgmt-datafactory>=2.0.0",
"azure-mgmt-containerregistry>=8.0.0",
"azure-mgmt-compute>=33.0.0",
diff --git a/providers/tableau/docs/index.rst b/providers/tableau/docs/index.rst
index a78fa9fe383..274f8165835 100644
--- a/providers/tableau/docs/index.rst
+++ b/providers/tableau/docs/index.rst
@@ -96,7 +96,7 @@ PIP package Version required
========================================== ==================
``apache-airflow`` ``>=2.11.0``
``apache-airflow-providers-common-compat`` ``>=1.10.1``
-``tableauserverclient`` ``>=0.27,!=0.39``
+``tableauserverclient`` ``>=0.27``
========================================== ==================
Cross provider package dependencies
diff --git a/providers/tableau/pyproject.toml b/providers/tableau/pyproject.toml
index d4a3cbc62f7..2ef42f64dff 100644
--- a/providers/tableau/pyproject.toml
+++ b/providers/tableau/pyproject.toml
@@ -61,9 +61,7 @@ requires-python = ">=3.10"
dependencies = [
"apache-airflow>=2.11.0",
"apache-airflow-providers-common-compat>=1.10.1",
- # Tableau release 0.39 is missing the tableauserverclient root folder in
the package.
- # we are limiting it for now - issue -
https://github.com/tableau/server-client-python/issues/1745
- "tableauserverclient>=0.27, !=0.39",
+ "tableauserverclient>=0.27",
]
[dependency-groups]