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 e752b4ac069 Remove version cap from qdrant-client (#63745)
e752b4ac069 is described below

commit e752b4ac069da8b213dbca852131dc47c2f13ca0
Author: Bugra Ozturk <[email protected]>
AuthorDate: Wed Mar 18 22:07:13 2026 +0100

    Remove version cap from qdrant-client (#63745)
    
    * Remove version cap from qdrant-client
---
 providers/qdrant/docs/index.rst | 8 ++++----
 providers/qdrant/pyproject.toml | 3 +--
 uv.lock                         | 2 +-
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/providers/qdrant/docs/index.rst b/providers/qdrant/docs/index.rst
index 94368cb34b5..4214ade2a16 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,!=1.17.0``
-==========================================  =====================
+``qdrant_client``                           ``>=1.17.1``
+==========================================  ==================
 
 Cross provider package dependencies
 -----------------------------------
diff --git a/providers/qdrant/pyproject.toml b/providers/qdrant/pyproject.toml
index 3e52bc9a326..bfd6fe504ac 100644
--- a/providers/qdrant/pyproject.toml
+++ b/providers/qdrant/pyproject.toml
@@ -60,8 +60,7 @@ requires-python = ">=3.10"
 dependencies = [
     "apache-airflow>=2.11.0",
     "apache-airflow-providers-common-compat>=1.8.0",
-    # Until this is fixed https://github.com/qdrant/qdrant-client/issues/1155
-    "qdrant_client>=1.15.1, !=1.17.0",
+    "qdrant_client>=1.17.1",
 ]
 
 [dependency-groups]
diff --git a/uv.lock b/uv.lock
index f8f4eb2d430..f415fea27fc 100644
--- a/uv.lock
+++ b/uv.lock
@@ -6485,7 +6485,7 @@ docs = [
 requires-dist = [
     { name = "apache-airflow", editable = "." },
     { name = "apache-airflow-providers-common-compat", editable = 
"providers/common/compat" },
-    { name = "qdrant-client", specifier = ">=1.15.1,!=1.17.0" },
+    { name = "qdrant-client", specifier = ">=1.17.1" },
 ]
 
 [package.metadata.requires-dev]

Reply via email to