Skip to content

Commit f91f5f8

Browse files
committed
add feature to version v0.21.1
1 parent f31e6a2 commit f91f5f8

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

doc/source/whatsnew/v0.21.1.txt

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ I/O
8181
- Bug in :func:`read_csv` when reading a compressed UTF-16 encoded file (:issue:`18071`)
8282
- Bug in :func:`read_csv` for handling null values in index columns when specifying ``na_filter=False`` (:issue:`5239`)
8383
- Bug in :meth:`DataFrame.to_csv` when the table had ``MultiIndex`` columns, and a list of strings was passed in for ``header`` (:issue:`5539`)
84+
- :func:`read_parquet` now allows to specify the columns to read from a parquet file (:issue:`18154`)
8485

8586
Plotting
8687
^^^^^^^^

doc/source/whatsnew/v0.22.0.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ I/O
109109
^^^
110110

111111
- :func:`read_html` now rewinds seekable IO objects after parse failure, before attempting to parse with a new parser. If a parser errors and the object is non-seekable, an informative error is raised suggesting the use of a different parser (:issue:`17975`)
112-
- :func:`read_parquet` now allows to specify the columns to read from a parquet file (:issue:`18154`)
112+
-
113113
-
114114

115115
Plotting

pandas/io/parquet.py

+1
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ def read_parquet(path, engine='auto', columns=None, **kwargs):
190190
File path
191191
columns: list, default=None
192192
If not None, only these columns will be read from the file.
193+
.. versionadded 0.21.1
193194
engine : {'auto', 'pyarrow', 'fastparquet'}, default 'auto'
194195
Parquet reader library to use. If 'auto', then the option
195196
'io.parquet.engine' is used. If 'auto', then the first

0 commit comments

Comments
 (0)