Skip to content
Snippets Groups Projects

Bump dependencies

Merged David Schäfer requested to merge deps into develop
Files
3
+ 3
1
@@ -526,7 +526,9 @@ class History:
raise TypeError(
f"value must be of type pd.Series, got type {type(obj).__name__}"
)
if not is_float_dtype(obj.dtype) and not isinstance(obj.dtype, pd.CategoricalDtype):
if not is_float_dtype(obj.dtype) and not isinstance(
obj.dtype, pd.CategoricalDtype
):
raise ValueError("dtype must be float or categorical")
return obj
Loading