AlenkaF commented on PR #40626:
URL: https://github.com/apache/arrow/pull/40626#issuecomment-2003608155

   We have assumed correctly there is an issue in `python-dateutil`:
   
   ```
   _______________________ test_dateutil_tzinfo_to_string 
________________________
       def test_dateutil_tzinfo_to_string():
           pytest.importorskip("dateutil")
           import dateutil.tz
       
           tz = dateutil.tz.UTC
           assert pa.lib.tzinfo_to_string(tz) == 'UTC'
           tz = dateutil.tz.gettz('Europe/Paris')
           print(tz)
   >       assert pa.lib.tzinfo_to_string(tz) == 'Europe/Paris'
   E       AssertionError: assert 'Europe/Monaco' == 'Europe/Paris'
   E         - Europe/Paris
   E         + Europe/Monaco
   pyarrow\tests\test_types.py:356: AssertionError
   ---------------------------- Captured stdout call 
-----------------------------
   tzfile('Europe/Monaco')
   ============================== warnings summary 
===============================
   pyarrow/tests/test_pandas.py::TestConvertMetadata::test_empty_list_metadata
   ```
   
    Will report upstream.


-- 
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]

Reply via email to