-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.
Description
Steps to reproduce
- Using google.cloud.bigquery v.1.23.0
- Insead of v.1.22.0 works fine.
Code example
from concurrent.futures import ThreadPoolExecutor
from logging import StreamHandler, Formatter, INFO, getLogger
from datetime import datetime, timedelta, timezone
from google.cloud import bigquery
from google.cloud.bigquery import LoadJobConfig
from google.cloud.bigquery import SchemaField
Stack trace
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<command-778378> in <module>
3 from datetime import datetime, timedelta, timezone
4
----> 5 from google.cloud import bigquery
6 from google.cloud.bigquery import LoadJobConfig
7 from google.cloud.bigquery import SchemaField
/databricks/python/lib/python3.7/site-packages/google/cloud/bigquery/__init__.py in <module>
33 __version__ = get_distribution("google-cloud-bigquery").version
34
---> 35 from google.cloud.bigquery.client import Client
36 from google.cloud.bigquery.dataset import AccessEntry
37 from google.cloud.bigquery.dataset import Dataset
/databricks/python/lib/python3.7/site-packages/google/cloud/bigquery/client.py in <module>
56 from google.cloud.bigquery._helpers import _verify_job_config_type
57 from google.cloud.bigquery._http import Connection
---> 58 from google.cloud.bigquery import _pandas_helpers
59 from google.cloud.bigquery.dataset import Dataset
60 from google.cloud.bigquery.dataset import DatasetListItem
/databricks/python/lib/python3.7/site-packages/google/cloud/bigquery/_pandas_helpers.py in <module>
38 pyarrow = None
39
---> 40 from google.cloud.bigquery import schema
41
42
/databricks/python/lib/python3.7/site-packages/google/cloud/bigquery/schema.py in <module>
15 """Schemas for BigQuery tables / queries."""
16
---> 17 from six.moves import collections_abc
18
19 from google.cloud.bigquery_v2 import types
ImportError: cannot import name 'collections_abc' from 'six.moves' (unknown location)
remss, CherylCB, benwu95, SaschaHeyer, thijsterlouw and 22 more
Metadata
Metadata
Assignees
Labels
api: bigqueryIssues related to the BigQuery API.Issues related to the BigQuery API.type: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.