File tree 2 files changed +2
-3
lines changed
doc/source/getting_started
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ Installable with ``pip install "pandas[computation]"``.
210
210
Dependency Minimum Version pip extra Notes
211
211
============================================== ================== =============== =======================================
212
212
`SciPy <https://github.com/scipy/scipy >`__ 1.12.0 computation Miscellaneous statistical functions
213
- `xarray <https://github.com/pydata/xarray >`__ 2024.1.1 computation pandas-like API for N-dimensional data
213
+ `xarray <https://github.com/pydata/xarray >`__ 2024.1.1 computation pandas-like API for N-dimensional data
214
214
============================================== ================== =============== =======================================
215
215
216
216
.. _install.excel_dependencies :
Original file line number Diff line number Diff line change @@ -211,7 +211,6 @@ def to_orc(
211
211
212
212
if engine != "pyarrow" :
213
213
raise ValueError ("engine must be 'pyarrow'" )
214
- pyarrow = import_optional_dependency (engine , min_version = "10.0.1" )
215
214
pa = import_optional_dependency ("pyarrow" )
216
215
orc = import_optional_dependency ("pyarrow.orc" )
217
216
@@ -222,7 +221,7 @@ def to_orc(
222
221
with get_handle (path , "wb" , is_text = False ) as handles :
223
222
try :
224
223
orc .write_table (
225
- pyarrow .Table .from_pandas (df , preserve_index = index ),
224
+ pa .Table .from_pandas (df , preserve_index = index ),
226
225
handles .handle ,
227
226
** engine_kwargs ,
228
227
)
You can’t perform that action at this time.
0 commit comments