From 97a94c8ad61b438feb0d13a854669b749aa24ef5 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Tue, 9 Jan 2024 12:56:13 -0600 Subject: [PATCH] revert unnecessary change to setup.py --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index 0d0e03ff..d0b16c2e 100644 --- a/setup.py +++ b/setup.py @@ -34,6 +34,11 @@ "google-api-core >= 2.10.2, <3.0.0dev", "google-auth >=2.13.0", "google-auth-oauthlib >=0.7.0", + # Require 1.27.* because it has a fix for out-of-bounds timestamps. See: + # https://github.com/googleapis/python-bigquery/pull/209 and + # https://github.com/googleapis/python-bigquery-pandas/issues/365 + # Exclude 2.4.* because it has a bug where waiting for the query can hang + # indefinitely. https://github.com/pydata/pandas-gbq/issues/343 "google-cloud-bigquery >=3.3.5,<4.0.0dev,!=2.4.*", "google-cloud-bigquery-storage >=2.16.2,<3.0.0dev", "packaging >=20.0.0",