From 2874abf4827f1ea529519d4b138511d31f732a50 Mon Sep 17 00:00:00 2001 From: Aravin <34178459+aravinsiva@users.noreply.github.com> Date: Mon, 24 Aug 2020 12:49:54 -0400 Subject: [PATCH] fix: fix dependency issue in fastavro (#241) * fixing dependency version to last version that supports Python 2.7 * Update noxfile.py Removing fastavro dependency. Co-authored-by: Tim Swast Co-authored-by: Tim Swast --- noxfile.py | 1 - 1 file changed, 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 5db14c31f..a27a5939e 100644 --- a/noxfile.py +++ b/noxfile.py @@ -92,7 +92,6 @@ def system(session): # Install all test dependencies, then install local packages in place. session.install("mock", "pytest", "psutil", "google-cloud-testutils") session.install("google-cloud-storage") - session.install("fastavro") session.install("-e", ".[all]") # IPython does not support Python 2 after version 5.x