diff --git a/providers/fab/docs/index.rst b/providers/fab/docs/index.rst index 90c64af8af02a..0bb6ba1c2cd85 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 e733985f1997a..f0112e8179cfc 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 41099e8b8bfd7..190949cf6087a 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 ae3785611fca6..a88de1c50e2ba 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 a78fa9fe38313..274f816583557 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 d4a3cbc62f73a..2ef42f64dfff8 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]