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
# if data is specified and type is not, infer type from dataif"type"notinattrs:
ifpyarrow_available() anddataisnotNoneandisinstance(data, DataFrameLike):
...
elifisinstance(data, pd.DataFrame):
# Fallback if pyarrow is not installed or if pandas is older than 1.5
In that particular environment pandas is installed by default and we are not able to upgrade pyarrow.
Now the altair specifications errors as the code never tries the pandas approach as it has found a pyarrow version that is too old.
The text was updated successfully, but these errors were encountered:
The error we are facing in an environment says:
And is caused by these lines:
https://github.com/altair-viz/altair/blob/main/altair/utils/core.py#L591-L592
In that particular environment pandas is installed by default and we are not able to upgrade pyarrow.
Now the altair specifications errors as the code never tries the pandas approach as it has found a pyarrow version that is too old.
The text was updated successfully, but these errors were encountered: