Skip to content

Commit a0660b2

Browse files
authored
REGR: Fix fastparquet 0.7.0 not being able to read a parquet file (#43145)
1 parent f489814 commit a0660b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v1.3.3.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Fixed regressions
1818
- Performance regression in :meth:`core.window.ewm.ExponentialMovingWindow.mean` (:issue:`42333`)
1919
- Fixed regression in :meth:`.GroupBy.agg` incorrectly raising in some cases (:issue:`42390`)
2020
- Fixed regression in :meth:`RangeIndex.where` and :meth:`RangeIndex.putmask` raising ``AssertionError`` when result did not represent a :class:`RangeIndex` (:issue:`43240`)
21-
21+
- Fixed regression in :meth:`read_parquet` where the ``fastparquet`` engine would not work properly with fastparquet 0.7.0 (:issue:`43075`)
2222
.. ---------------------------------------------------------------------------
2323
2424
.. _whatsnew_133.performance:

pandas/io/parquet.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ def read(
311311
):
312312
parquet_kwargs: dict[str, Any] = {}
313313
use_nullable_dtypes = kwargs.pop("use_nullable_dtypes", False)
314-
if Version(self.api.__version__) >= Version("0.7.0"):
314+
if Version(self.api.__version__) >= Version("0.7.1"):
315315
# We are disabling nullable dtypes for fastparquet pending discussion
316316
parquet_kwargs["pandas_nulls"] = False
317317
if use_nullable_dtypes:

0 commit comments

Comments
 (0)