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
pandas 2.1.1 has deprecated the convert_dtype option to apply triggering a warning from altair:
.tox/py311/lib/python3.11/site-packages/altair/utils/core.py:410: in sanitize_dataframe
col = df[col_name].apply(to_list_if_array, convert_dtype=False)
.tox/py311/lib/python3.11/site-packages/pandas/core/series.py:4753: in apply
return SeriesApply(
.tox/py311/lib/python3.11/site-packages/pandas/core/apply.py:1170: in __init__
warnings.warn(
E FutureWarning: the convert_dtype parameter is deprecated and will be removed in a future version. Do ``ser.astype(object).apply()`` instead if you want ``convert_dty
pe=False``.
The text was updated successfully, but these errors were encountered:
pandas 2.1.1 has deprecated the
convert_dtype
option toapply
triggering a warning from altair:The text was updated successfully, but these errors were encountered: