Skip to content

Commit 47d48f1

Browse files
committed
green everything?
1 parent faeed4c commit 47d48f1

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

doc/source/whatsnew/v2.1.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,8 +212,8 @@ Other enhancements
212212
- Improved error message when :meth:`DataFrameGroupBy.agg` failed (:issue:`52930`)
213213
- Many read/to_* functions, such as :meth:`DataFrame.to_pickle` and :func:`read_csv`, support forwarding compression arguments to lzma.LZMAFile (:issue:`52979`)
214214
- Reductions :meth:`Series.argmax`, :meth:`Series.argmin`, :meth:`Series.idxmax`, :meth:`Series.idxmin`, :meth:`Index.argmax`, :meth:`Index.argmin`, :meth:`DataFrame.idxmax`, :meth:`DataFrame.idxmin` are now supported for object-dtype objects (:issue:`4279`, :issue:`18021`, :issue:`40685`, :issue:`43697`)
215+
- Allow using pyarrow to serialize :class:`DataFrame` and :class:`Series` to CSV with ``engine="pyarrow"`` in :meth:`DataFrame.to_csv` and :meth:`Series.to_csv` (:issue:`53618`)
215216
- Performance improvement in :meth:`GroupBy.quantile` (:issue:`51722`)
216-
-
217217

218218
.. ---------------------------------------------------------------------------
219219
.. _whatsnew_210.notable_bug_fixes:

pandas/tests/io/formats/test_to_csv.py

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
@pytest.fixture(params=["python", "pyarrow"])
1919
def engine(request):
2020
# TODO: Skip if pyarrow not found
21+
if request.param == "pyarrow":
22+
pytest.importorskip("pyarrow")
2123
return request.param
2224

2325

0 commit comments

Comments
 (0)