h-vetinari opened a new issue, #41924: URL: https://github.com/apache/arrow/issues/41924
### Describe the bug, including details regarding any error messages, version, and platform. Despite #39532, I'm seeing a bunch of errors related to integer size on windows in https://github.com/conda-forge/pyarrow-feedstock/pull/124: ``` =========================== short test summary info =========================== FAILED pyarrow/tests/parquet/test_basic.py::test_set_write_batch_size - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_basic.py::test_set_dictionary_pagesize_limit - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_read_multiple_files - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_dataset_read_pandas - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_dataset_memory_map - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_dataset_enable_buffered_stream - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_dataset_enable_pre_buffer - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_private_directories[_] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_private_directories[.] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_hidden_files_dot - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_hidden_files_underscore - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_no_private_directories_in_base_path[_] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_dataset.py::test_ignore_no_private_directories_in_base_path[.] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_pandas_parquet_native_file_roundtrip - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_read_pandas_column_subset - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_spark_flavor_preserves_pandas_metadata - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_metadata-True] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_metadata-False] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_metadata-None] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_common_metadata-True] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_common_metadata-False] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_pandas.py::test_dataset_read_pandas_common_metadata[_common_metadata-None] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_incremental_file_build - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_context_obj - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_context_obj_with_exception - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_write_wrappers[None] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_write_wrappers[filesystem1] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_local[None] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_local[filesystem1] - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_s3 - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_s3_uri - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_s3fs - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/parquet/test_parquet_writer.py::test_parquet_writer_filesystem_buffer_raises - ValueError: high is out of bounds for int32 FAILED pyarrow/tests/test_pandas.py::TestConvertPrimitiveTypes::test_integer_no_nulls - ValueError: low is out of bounds for int32 = 34 failed, 7329 passed, 270 skipped, 14 deselected, 20 xfailed, 2 xpassed, 20 warnings in 438.44s (0:07:18) = ``` More concretely, the failures leave the following kind of stacktrace (i.e. not a lot of information): ``` ________________ test_parquet_writer_filesystem_buffer_raises _________________ @pytest.mark.pandas def test_parquet_writer_filesystem_buffer_raises(): > df = _test_dataframe(100) pyarrow\tests\parquet\test_parquet_writer.py:319: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pyarrow\tests\parquet\common.py:100: in _test_dataframe 'uint32': _random_integers(size, np.uint32), pyarrow\tests\parquet\common.py:84: in _random_integers return np.random.randint(max(iinfo.min, platform_int_info.min), numpy\\random\\mtrand.pyx:796: in numpy.random.mtrand.RandomState.randint ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E ValueError: high is out of bounds for int32 ``` ### Component(s) Python -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org