kou commented on PR #12763: URL: https://github.com/apache/arrow/pull/12763#issuecomment-1153002196
We need to fix `wheel-*-cp37-*` failures such as `wheel-manylinux2014-cp37-amd64`: https://github.com/ursacomputing/crossbow/runs/6842267198?check_suite_focus=true ```text =================================== FAILURES =================================== _______________ TestConvertMetadata.test_rangeindex_doesnt_warn ________________ self = <pyarrow.tests.test_pandas.TestConvertMetadata object at 0x7f9961d90d90> def test_rangeindex_doesnt_warn(self): # ARROW-5606: pandas 0.25 deprecated private _start/stop/step # attributes -> can be removed if support < pd 0.25 is dropped df = pd.DataFrame(np.random.randn(4, 2), columns=['a', 'b']) with pytest.warns(None) as record: _check_pandas_roundtrip(df, preserve_index=True) > assert len(record) == 0 E assert 4 == 0 E + where 4 = len(WarningsChecker(record=True)) usr/local/lib/python3.7/site-packages/pyarrow/tests/test_pandas.py:229: AssertionError _______________ TestConvertMetadata.test_multiindex_doesnt_warn ________________ self = <pyarrow.tests.test_pandas.TestConvertMetadata object at 0x7f9961d2a710> def test_multiindex_doesnt_warn(self): # ARROW-3953: pandas 0.24 rename of MultiIndex labels to codes columns = pd.MultiIndex.from_arrays([['one', 'two'], ['X', 'Y']]) df = pd.DataFrame([(1, 'a'), (2, 'b'), (3, 'c')], columns=columns) with pytest.warns(None) as record: _check_pandas_roundtrip(df, preserve_index=True) > assert len(record) == 0 E assert 6 == 0 E + where 6 = len(WarningsChecker(record=True)) usr/local/lib/python3.7/site-packages/pyarrow/tests/test_pandas.py:280: AssertionError ``` -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org