/Users/<user>/anaconda2/envs/py3k/lib/python3.6/site-packages/patsy/util.py:652: DeprecationWarning: pandas.core.common.is_categorical_dtype is deprecated. import from the public API: pandas.api.types.is_categorical_dtype instead
return safe_is_pandas_categorical_dtype(data.dtype)
Would be good to switch over to the new API soon to get rid of the warning and prevent breakage with future pandas versions.
The warning basically says it all:
Would be good to switch over to the new API soon to get rid of the warning and prevent breakage with future
pandas
versions.