We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc0d6e commit 36bb0aeCopy full SHA for 36bb0ae
1 file changed
integrations/valkey/pyproject.toml
@@ -26,7 +26,13 @@ classifiers = [
26
"Programming Language :: Python :: Implementation :: CPython",
27
"Programming Language :: Python :: Implementation :: PyPy",
28
]
29
-dependencies = ["haystack-ai>=2.28.0", "valkey-glide>=2.2.0", "valkey-glide-sync>=2.2.0"]
+dependencies = [
30
+ "haystack-ai>=2.28.0",
31
+ # 2.4.0 wheels are missing the glide_shared._fast_response extension, which
32
+ # breaks `import glide_sync`. See https://github.com/valkey-io/valkey-glide/pull/6020.
33
+ "valkey-glide>=2.2.0,!=2.4.0",
34
+ "valkey-glide-sync>=2.2.0,!=2.4.0",
35
+]
36
37
[project.urls]
38
Documentation = "https://github.com/deepset-ai/haystack-core-integrations/tree/main/integrations/valkey#readme"
0 commit comments