holoviz / spatialpandas

Pandas extension arrays for spatial/geometric operations
BSD 2-Clause "Simplified" License
308 stars 24 forks source link

Apache Arrow 1.0.0 incompatibility #43

Closed brl0 closed 4 years ago

brl0 commented 4 years ago

Apache Arrow 1.0.0 was released and is causing many tests to fail with errors such as AttributeError: 'pyarrow.lib.ListScalar' object has no attribute 'value_type'.

jbednar commented 4 years ago

Thanks. I don't see ListScalar anywhere in our code, but I do see .value_type. ListScalar has a .type; not sure if that's what's needed here.

brl0 commented 4 years ago

I did make a superficial effort on this, updating the appropriate .value_type calls to .type, but was still running into issues.