This is an automated email from the ASF dual-hosted git repository.

potiuk 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 ba1d4733615 limit 0.39 version due to missing package (#61387)
ba1d4733615 is described below

commit ba1d4733615b4cdd3f106edae59271aa2c55c7ed
Author: Pratiksha <[email protected]>
AuthorDate: Tue Feb 3 17:17:31 2026 +0530

    limit 0.39 version due to missing package (#61387)
---
 providers/tableau/docs/index.rst | 2 +-
 providers/tableau/pyproject.toml | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/providers/tableau/docs/index.rst b/providers/tableau/docs/index.rst
index 6a4e386e668..19d14fd2473 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``
+``tableauserverclient``                     ``>=0.27,!=0.39``
 ==========================================  ==================
 
 Cross provider package dependencies
diff --git a/providers/tableau/pyproject.toml b/providers/tableau/pyproject.toml
index 7d8d063c941..9e8857c4d3e 100644
--- a/providers/tableau/pyproject.toml
+++ b/providers/tableau/pyproject.toml
@@ -60,7 +60,9 @@ requires-python = ">=3.10"
 dependencies = [
     "apache-airflow>=2.11.0",
     "apache-airflow-providers-common-compat>=1.10.1",
-    "tableauserverclient>=0.27",
+    # 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",
 ]
 
 [dependency-groups]

Reply via email to