Skip to content

Commit 81ab6b8

Browse files
authored
FIX: exclude google-cloud-bigquery==2.4.x from dependencies (#354)
* FIX: exclude google-cloud-bigquery==2.4.x from dependencies * update changelog
1 parent 22a6064 commit 81ab6b8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/source/changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Dependencies
1717
~~~~~~~~~~~~
1818

1919
- Drop support for Python 3.5 and 3.6. (:issue:`337`)
20+
- Drop support for `google-cloud-bigquery==2.4.*` due to query hanging bug.
21+
(:issue:`343`)
2022

2123

2224
.. _changelog-0.14.1:

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ def readme():
2222
"pydata-google-auth",
2323
"google-auth",
2424
"google-auth-oauthlib",
25-
"google-cloud-bigquery[bqstorage,pandas]>=1.11.1,<3.0.0dev",
25+
# 2.4.* has a bug where waiting for the query can hang indefinitely.
26+
# https://github.com/pydata/pandas-gbq/issues/343
27+
"google-cloud-bigquery[bqstorage,pandas]>=1.11.1,<3.0.0dev,!=2.4.*",
2628
]
2729

2830
extras = {"tqdm": "tqdm>=4.23.0"}

0 commit comments

Comments
 (0)