chore(kafka): fixes lower bound version for confluent_kafka dep in ingestion (#14630)

This commit is contained in:
Sergio Gómez Villamor 2025-09-03 14:54:05 +02:00 committed by GitHub
parent 6f4a109790
commit 71b21a9e64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,7 +75,8 @@ kafka_common = {
# With the release of 2.8.1, confluent-kafka only released a source distribution,
# and no prebuilt wheels.
# See https://github.com/confluentinc/confluent-kafka-python/issues/1927
"confluent_kafka[schemaregistry,avro]>=1.9.0, != 2.8.1",
# RegisteredSchema#guid is being used and was introduced in 2.10.1 https://github.com/confluentinc/confluent-kafka-python/pull/1978
"confluent_kafka[schemaregistry,avro]>=2.10.1",
# We currently require both Avro libraries. The codegen uses avro-python3 (above)
# schema parsers at runtime for generating and reading JSON into Python objects.
# At the same time, we use Kafka's AvroSerializer, which internally relies on