Description of new feature
We started getting FutureWarning and while #4198 temporarily allows unrelated PRs to pass this needs to be fixed properly:
warnings.warn(
"pyarrow.feather.write_feather is deprecated as of 24.0.0. "
"Use pyarrow.ipc.new_file() / RecordBatchFileWriter instead. "
"Feather V2 is the Arrow IPC file format.",
FutureWarning,
stacklevel=2
)
E FutureWarning: pyarrow.feather.write_feather is deprecated as of 24.0.0. Use pyarrow.ipc.new_file() / RecordBatchFileWriter instead. Feather V2 is the Arrow IPC file format.
E
E This error occurred while calling
E
E ak.to_feather(
E <Array [[1.1, 2.2, 3.3], [], [4.4, 5.5]] type='3 * var * float64'>
E '/private/var/folders/8j/sfr9qqcj73j4p6nhwcfpr0th0000gn/T/'...
E )
Description of new feature
We started getting
FutureWarningand while #4198 temporarily allows unrelated PRs to pass this needs to be fixed properly: