Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Python][CI] wheel-windows-cp36-amd64 nightly build failure #29797

Closed
asfimport opened this issue Oct 4, 2021 · 2 comments
Closed

[Python][CI] wheel-windows-cp36-amd64 nightly build failure #29797

asfimport opened this issue Oct 4, 2021 · 2 comments

Comments

@asfimport
Copy link

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:

__________________________ 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'

Reporter: Antoine Pitrou / @pitrou
Assignee: Joris Van den Bossche / @jorisvandenbossche

PRs and other links:

Note: This issue was originally created as ARROW-14214. Please see the migration documentation for further details.

@asfimport
Copy link
Author

Joris Van den Bossche / @jorisvandenbossche:
Ah, I assume this is because the build is using Python 3.6, which doesn't yet use the module __getattr__

@asfimport
Copy link
Author

Antoine Pitrou / @pitrou:
Issue resolved by pull request 11336
#11336

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants