Skip to content

Commit a5af1a8

Browse files
authored
fix(ingest): bump avro dep (#12729)
1 parent 815e688 commit a5af1a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

metadata-ingestion/setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@
3838
"expandvars>=0.6.5",
3939
"avro-gen3==0.7.16",
4040
# "avro-gen3 @ git+https://github.com/acryldata/avro_gen@master#egg=avro-gen3",
41-
"avro>=1.11.3,<1.12",
41+
# avro has historically made breaking changes, so we have a cautious upper bound.
42+
"avro>=1.11.3,<1.13",
4243
"python-dateutil>=2.8.0",
4344
"tabulate",
4445
"progressbar2",
@@ -76,7 +77,7 @@
7677
# now provide prebuilt wheels for most platforms, including M1 Macs and
7778
# Linux aarch64 (e.g. Docker's linux/arm64). Installing confluent_kafka
7879
# from source remains a pain.
79-
"confluent_kafka[schemaregistry]>=1.9.0",
80+
"confluent_kafka[schemaregistry,avro]>=1.9.0",
8081
# We currently require both Avro libraries. The codegen uses avro-python3 (above)
8182
# schema parsers at runtime for generating and reading JSON into Python objects.
8283
# At the same time, we use Kafka's AvroSerializer, which internally relies on

0 commit comments

Comments
 (0)