From d00de349440479f6e03bddbad5a5b3c39d3c8454 Mon Sep 17 00:00:00 2001 From: Lingqing Gan Date: Wed, 8 Nov 2023 14:33:35 -0800 Subject: [PATCH] revert pyarrow requirement for python < 3.7 --- bigquery/pandas-gbq-migration/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigquery/pandas-gbq-migration/requirements.txt b/bigquery/pandas-gbq-migration/requirements.txt index 4a687084a7ca..eb87f2191fb3 100644 --- a/bigquery/pandas-gbq-migration/requirements.txt +++ b/bigquery/pandas-gbq-migration/requirements.txt @@ -9,4 +9,4 @@ pandas-gbq==0.14.1; python_version < '3.7' grpcio==1.56.0 pyarrow==14.0.0; python_version > '3.6' # pyarrow==6.0.1 is the latest compatible version for pandas-gbq 0.14.1 -pyarrow==14.0.0; python_version < '3.7' +pyarrow==6.0.1; python_version < '3.7'