From 539f789ad1255fef13cfd4ef6c945ec699dbc757 Mon Sep 17 00:00:00 2001 From: Seth Hollyman Date: Fri, 24 Jul 2020 20:31:59 +0000 Subject: [PATCH] chore: constrain upper bound on pyarrow dependency It appears pyarrow just released 1.0.0 and we'll need to do more work to address changes. This PR sets an upper bound on this exclude the new 1.0 series for now. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0ac3a8598..03c60505b 100644 --- a/setup.py +++ b/setup.py @@ -43,14 +43,14 @@ # as `google-api-core[grpc]`. We thus need to explicitly specify it here. # See: https://github.com/googleapis/python-bigquery/issues/83 "grpcio >= 1.8.2, < 2.0dev", - "pyarrow>=0.16.0, < 2.0dev", + "pyarrow>=0.16.0, < 1.0.0", ], "pandas": ["pandas>=0.17.1"], # Exclude PyArrow dependency from Windows Python 2.7. 'pyarrow: platform_system != "Windows" or python_version >= "3.4"': [ # Bad Linux release for 0.14.0. # https://issues.apache.org/jira/browse/ARROW-5868 - "pyarrow>=0.4.1, != 0.14.0" + "pyarrow>=0.4.1, != 0.14.0, < 1.0.0" ], "tqdm": ["tqdm >= 4.0.0, <5.0.0dev"], "fastparquet": [