From 78bb81dc51b85ecdbd5885f65089551e35bba09b Mon Sep 17 00:00:00 2001 From: David Heryanto Date: Thu, 27 Feb 2020 12:35:27 +0800 Subject: [PATCH] Relax fastavro version requirement in Feast --- sdk/python/setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sdk/python/setup.py b/sdk/python/setup.py index 3fc77540c02..9d8a3786505 100644 --- a/sdk/python/setup.py +++ b/sdk/python/setup.py @@ -37,9 +37,7 @@ "pandavro==1.5.*", "protobuf>=3.10", "PyYAML==5.1.*", - # fastavro 0.22.10 and newer will throw this error for e2e batch test: - # TypeError: Timestamp subtraction must have the same timezones or no timezones - "fastavro==0.22.9", + "fastavro>=0.22.11,<0.23", "kafka-python==1.*", "tabulate==0.8.*", "toml==0.10.*",