Skip to content

Commit

Permalink
chore(ci): avoid dep on confluent-kafka 2.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored and Rasnar committed Feb 28, 2025
1 parent b922490 commit 551d08e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion metadata-ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@
# now provide prebuilt wheels for most platforms, including M1 Macs and
# Linux aarch64 (e.g. Docker's linux/arm64). Installing confluent_kafka
# from source remains a pain.
"confluent_kafka[schemaregistry,avro]>=1.9.0",
# 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",
# 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
Expand Down

0 comments on commit 551d08e

Please sign in to comment.