Skip to content

Commit f2bb596

Browse files
committed
update docs
1 parent 098bba4 commit f2bb596

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

doc/source/getting_started/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ matplotlib 2.2.2 Visualization
258258
openpyxl 2.4.8 Reading / writing for xlsx files
259259
pandas-gbq 0.8.0 Google Big Query access
260260
psycopg2 PostgreSQL engine for sqlalchemy
261-
pyarrow 0.9.0 Parquet and feather reading / writing
261+
pyarrow 0.9.0 Parquet, ORC, and feather reading / writing
262262
pymysql 0.7.11 MySQL engine for sqlalchemy
263263
pyreadstat SPSS files (.sav) reading
264264
pytables 3.4.2 HDF5 reading / writing

doc/source/user_guide/io.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ The pandas I/O API is a set of top level ``reader`` functions accessed like
2828
binary;`HDF5 Format <https://support.hdfgroup.org/HDF5/whatishdf5.html>`__;:ref:`read_hdf<io.hdf5>`;:ref:`to_hdf<io.hdf5>`
2929
binary;`Feather Format <https://github.com/wesm/feather>`__;:ref:`read_feather<io.feather>`;:ref:`to_feather<io.feather>`
3030
binary;`Parquet Format <https://parquet.apache.org/>`__;:ref:`read_parquet<io.parquet>`;:ref:`to_parquet<io.parquet>`
31+
binary;`ORC Format <//https://orc.apache.org/>`__;:ref:`read_orc<io.orc>`;
3132
binary;`Msgpack <https://msgpack.org/index.html>`__;:ref:`read_msgpack<io.msgpack>`;:ref:`to_msgpack<io.msgpack>`
3233
binary;`Stata <https://en.wikipedia.org/wiki/Stata>`__;:ref:`read_stata<io.stata_reader>`;:ref:`to_stata<io.stata_writer>`
3334
binary;`SAS <https://en.wikipedia.org/wiki/SAS_(software)>`__;:ref:`read_sas<io.sas_reader>`;
@@ -5758,6 +5759,3 @@ Space on disk (in bytes)
57585759
24009288 Oct 10 06:43 test_fixed_compress.hdf
57595760
24458940 Oct 10 06:44 test_table.hdf
57605761
24458940 Oct 10 06:44 test_table_compress.hdf
5761-
5762-
5763-

pandas/io/orc.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def read_orc(path, engine="auto", columns=None, **kwargs):
8787
"""
8888
Load an ORC object from the file path, returning a DataFrame.
8989
90-
.. versionadded:: 0.21.0
90+
.. versionadded:: 1.0.0
9191
9292
Parameters
9393
----------
@@ -108,8 +108,6 @@ def read_orc(path, engine="auto", columns=None, **kwargs):
108108
used. The default ``io.orc.engine`` behavior is to try 'pyarrow'.
109109
columns : list, default=None
110110
If not None, only these columns will be read from the file.
111-
112-
.. versionadded:: 0.21.1
113111
**kwargs
114112
Any additional kwargs are passed to the engine.
115113

pandas/tests/api/test_api.py

+1
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ class TestPDApi(Base):
166166
"read_table",
167167
"read_feather",
168168
"read_parquet",
169+
"read_orc",
169170
"read_spss",
170171
]
171172

0 commit comments

Comments
 (0)