Antoine Pitrou created ARROW-14214:
--------------------------------------
Summary: [Python][CI] wheel-windows-cp36-amd64 nightly build
failure
Key: ARROW-14214
URL: https://issues.apache.org/jira/browse/ARROW-14214
Project: Apache Arrow
Issue Type: Bug
Components: Continuous Integration, Packaging, Python
Reporter: Antoine Pitrou
Fix For: 6.0.0
See
https://github.com/ursacomputing/crossbow/runs/3788550781?check_suite_focus=true#step:8:308
For some reason, Orc is disabled in the Python 3.6 Windows wheel build, but the
test doesn't detect it:
{code}
__________________________ test_file_format_pickling __________________________
def test_file_format_pickling():
formats = [
ds.IpcFileFormat(),
ds.CsvFileFormat(),
ds.CsvFileFormat(pa.csv.ParseOptions(delimiter='\t',
ignore_empty_lines=True)),
ds.CsvFileFormat(read_options=pa.csv.ReadOptions(
skip_rows=3, column_names=['foo'])),
ds.CsvFileFormat(read_options=pa.csv.ReadOptions(
skip_rows=3, block_size=2**20)),
ds.ParquetFileFormat(),
ds.ParquetFileFormat(dictionary_columns={'a'}),
ds.ParquetFileFormat(use_buffered_stream=True),
ds.ParquetFileFormat(
use_buffered_stream=True,
buffer_size=4096,
)
]
try:
> formats.append(ds.OrcFileFormat())
E AttributeError: module 'pyarrow.dataset' has no attribute
'OrcFileFormat'
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)