From 7eb0da5f4b258d0cf4dd8145281a295668b66b4c Mon Sep 17 00:00:00 2001 From: tvalentyn Date: Wed, 12 Feb 2020 11:24:51 -0800 Subject: [PATCH] [AVRO-2737] Exclude a buggy avro version from requirements spec. --- sdks/python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python/setup.py b/sdks/python/setup.py index d32a7509e18d..06691cb5f218 100644 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -136,7 +136,7 @@ def get_version(): REQUIRED_PACKAGES = [ 'avro>=1.8.1,<2.0.0; python_version < "3.0"', - 'avro-python3>=1.8.1,<2.0.0; python_version >= "3.0"', + 'avro-python3>=1.8.1,!=1.9.2,<2.0.0; python_version >= "3.0"', 'crcmod>=1.7,<2.0', # Dill doesn't have forwards-compatibility guarantees within minor version. # Pickles created with a new version of dill may not unpickle using older