Skip to content

Commit d6002fe

Browse files
committed
fix review
1 parent 48024be commit d6002fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/source/user_guide/io.rst

+1-3
Original file line numberDiff line numberDiff line change
@@ -3960,9 +3960,7 @@ Calamine (Excel and ODS files)
39603960
The :func:`~pandas.read_excel` method can read Excel file (``.xlsx``, ``.xlsm``, ``.xls``, ``.xlsb``)
39613961
and OpenDocument spreadsheets (``.ods``) using the ``python-calamine`` module.
39623962
This module is a binding for Rust library `calamine <https://crates.io/crates/calamine>`__
3963-
and faster then other engines in most cases. The semantics and features for reading files
3964-
match what can be done for `Excel files`_ using ``engine='calamine'``.
3965-
The optional dependency 'python-calamine' needs to be installed.
3963+
and is faster than other engines in most cases. The optional dependency 'python-calamine' needs to be installed.
39663964

39673965
.. code-block:: python
39683966

pandas/tests/io/excel/test_readers.py

+2
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ def test_excel_cell_error_na(self, request, engine, read_ext):
407407
)
408408
)
409409

410+
# https://github.com/tafia/calamine/issues/355
410411
if engine == "calamine" and read_ext == ".ods":
411412
request.node.add_marker(
412413
pytest.mark.xfail(reason="Calamine can't extract error from ods files")
@@ -1040,6 +1041,7 @@ def test_read_excel_multiindex(self, request, engine, read_ext):
10401041
)
10411042
)
10421043

1044+
# https://github.com/tafia/calamine/issues/354
10431045
if engine == "calamine" and read_ext == ".ods":
10441046
request.node.add_marker(
10451047
pytest.mark.xfail(reason="Last test fails in calamine")

0 commit comments

Comments
 (0)