You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is unconditional pandas import in datatypes.string module after 7202dc5
Since pandas is an extra package and I don't install it, CH client raises exception.
clickhouse-connect logs
Traceback (most recent call last):
...
File "/venv/lib/python3.11/site-packages/clickhouse_connect/__init__.py", line 1, in <module>
from clickhouse_connect.driver import create_client
File "/venv/lib/python3.11/site-packages/clickhouse_connect/driver/__init__.py", line 6, in <module>
from clickhouse_connect.driver.client import Client
File "/venv/lib/python3.11/site-packages/clickhouse_connect/driver/client.py", line 13, in <module>
from clickhouse_connect.datatypes.registry import get_from_name
File "/venv/lib/python3.11/site-packages/clickhouse_connect/datatypes/__init__.py", line 5, in <module>
import clickhouse_connect.datatypes.string
File "/venv/lib/python3.11/site-packages/clickhouse_connect/datatypes/string.py", line 3, in <module>
import pandas as pd
ModuleNotFoundError: No module named 'pandas'
The text was updated successfully, but these errors were encountered:
Describe the bug
There is unconditional pandas import in
datatypes.string
module after 7202dc5Since pandas is an extra package and I don't install it, CH client raises exception.
clickhouse-connect logs
The text was updated successfully, but these errors were encountered: