Closed msarahan closed 7 years ago
I believe this is fixed by upgrading dask to 0.15.4. pandas 0.21 seems to removed something and a new version of dask is required to fix it. @jbednar @jbcrail Maybe we should pin latest dask in the meta.yaml
?
I ran into a similar issue with recent PRs. Upgrading dask did fix the exceptions, but one test, test_count_cat
, is failing due to the unrecognized categorical dtype. Downgrading to pandas 0.20.x fixes that issue.
pandas added a new CategoricalDtype in 0.21.0 which probably needs to be handled now.
Should be fixed on master now.
Seems like pandas 0.21 changed some major things that require adaptation in datashader. Here's one:
another one I encountered recently was that the categorical dtype was no longer recognized, so the neat gerrymandering example you guys have didn't work anymore.