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

bugraoz 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 ad29cc5520c Cap qdrant_client (#62193)
ad29cc5520c is described below

commit ad29cc5520c558bc81fd083eda41da9f1550ceec
Author: Bugra Ozturk <[email protected]>
AuthorDate: Thu Feb 19 22:56:09 2026 +0100

    Cap qdrant_client (#62193)
---
 providers/qdrant/docs/index.rst | 8 ++++----
 providers/qdrant/pyproject.toml | 3 ++-
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/providers/qdrant/docs/index.rst b/providers/qdrant/docs/index.rst
index 2256a074345..5d67a67633b 100644
--- a/providers/qdrant/docs/index.rst
+++ b/providers/qdrant/docs/index.rst
@@ -90,13 +90,13 @@ 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.8.0``
-``qdrant_client``                           ``>=1.15.1``
-==========================================  ==================
+``qdrant_client``                           ``>=1.15.1,!=1.17.0``
+==========================================  =====================
 
 Cross provider package dependencies
 -----------------------------------
diff --git a/providers/qdrant/pyproject.toml b/providers/qdrant/pyproject.toml
index 985c4524c24..558559e186e 100644
--- a/providers/qdrant/pyproject.toml
+++ b/providers/qdrant/pyproject.toml
@@ -60,7 +60,8 @@ requires-python = ">=3.10"
 dependencies = [
     "apache-airflow>=2.11.0",
     "apache-airflow-providers-common-compat>=1.8.0",
-    "qdrant_client>=1.15.1",
+    # Until this is fixed https://github.com/qdrant/qdrant-client/issues/1155
+    "qdrant_client>=1.15.1, !=1.17.0",
 ]
 
 [dependency-groups]

Reply via email to