Small bug-fix release:
- Fix regression (RecursionError) in reshape methods such as
unstack()
andpivot()
involving MultiIndex, or GeoDataFrame construction with MultiIndex (#2486). - Fix regression in
GeoDataFrame.explode()
with non-default geometry column name. - Fix regression in
apply()
causing row-wise all nan float columns to be casted to GeometryDtype (#2482). - Fix a crash in datetime column reading where the file contains mixed timezone offsets (#2479). These will be read as UTC localized values.
- Fix a crash in datetime column reading where the file contains datetimes outside the range supported by [ns] precision (#2505).
- Fix regression in passing the Parquet or Feather format
version
into_parquet
andto_feather
. As a result, theversion
parameter for theto_parquet
andto_feather
methods has been replaced withschema_version
.version
will be passed directly to underlying feather or parquet writer.version
will only be used to setschema_version
ifversion
is one of 0.1.0 or 0.4.0 (#2496).