From 963f141984c36d5eab105365e465fd5588916527 Mon Sep 17 00:00:00 2001 From: Leo Singer Date: Thu, 4 May 2023 14:58:57 -0400 Subject: [PATCH] Disallow confluent-kafka-python 2.1.1 Version 2.1.1 of confluent-kafka-python still suffers from a segfault bug. See https://github.com/confluentinc/confluent-kafka-python/issues/1547. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 604fa88..122b87e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,7 +22,7 @@ classifiers = [ dependencies = [ "authlib", "certifi", - "confluent-kafka >= 1.6.1, != 2.1.0", + "confluent-kafka >= 1.6.1, != 2.1.0, != 2.1.1", "requests", "typing-extensions; python_version<='3.7'" ]