raulcd opened a new issue, #49933: URL: https://github.com/apache/arrow/issues/49933
### Describe the bug, including details regarding any error messages, version, and platform. CI nightly jobs for pandas and numpy nightly/devel: - [test-conda-python-3.13-pandas-nightly-numpy-nightly](https://github.com/ursacomputing/crossbow/actions/runs/25410901400/job/74532216783) - [test-conda-python-3.13-pandas-upstream_devel-numpy-nightly](https://github.com/ursacomputing/crossbow/actions/runs/25410903009/job/74532222209) have been failing with the following test failure for approximately 1 week: ``` ____________ TestConvertMetadata.test_table_column_subset_metadata _____________ self = <pyarrow.tests.test_pandas.TestConvertMetadata object at 0x7f7bbc3253e0> def test_table_column_subset_metadata(self): # ARROW-1883 # non-default index for index in [ pd.Index(['a', 'b', 'c'], name='index'), pd.date_range("2017-01-01", periods=3, tz='Europe/Brussels')]: df = pd.DataFrame({'a': [1, 2, 3], 'b': [.1, .2, .3]}, index=index) table = pa.Table.from_pandas(df) table_subset = table.remove_column(1) result = table_subset.to_pandas() expected = df[['a']] if isinstance(df.index, pd.DatetimeIndex): df.index.freq = None > tm.assert_frame_equal(result, expected) E AssertionError: (None, <Day>) ``` ### 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
