raulcd opened a new issue, #36991:
URL: https://github.com/apache/arrow/issues/36991

   ### Describe the bug, including details regarding any error messages, 
version, and platform.
   
   I was trying to build Windows wheels on XXX and found the following error:
   
https://github.com/ursacomputing/crossbow/actions/runs/5735683765/job/15543833056#step:9:774
   It does seems that nightly Windows wheels have also been failing due to this 
for the last couple of days:
   * 
[wheel-windows-cp310-amd64](https://github.com/ursacomputing/crossbow/actions/runs/5724483754/job/15511062130)
   * 
[wheel-windows-cp311-amd64](https://github.com/ursacomputing/crossbow/actions/runs/5724497525/job/15511102901)
   * 
[wheel-windows-cp38-amd64](https://github.com/ursacomputing/crossbow/actions/runs/5724470341/job/15511021685)
   * 
[wheel-windows-cp39-amd64](https://github.com/ursacomputing/crossbow/actions/runs/5724481808/job/15511055350)
   
   This seems to fail since: https://github.com/apache/arrow/pull/36942 was 
merged.
   ```
    _________________ test_sequence_timestamp_from_int_with_unit 
__________________
   
       @pytest.mark.pandas
       def test_sequence_timestamp_from_int_with_unit():
           # TODO(wesm): This test might be rewritten to assert the actual 
behavior
           # when pandas is not installed
       
           data = [1]
       
           s = pa.timestamp('s')
           ms = pa.timestamp('ms')
           us = pa.timestamp('us')
           ns = pa.timestamp('ns')
       
           arr_s = pa.array(data, type=s)
           assert len(arr_s) == 1
           assert arr_s.type == s
   >       assert repr(arr_s[0]) == (
               "<pyarrow.TimestampScalar: '1970-01-01T00:00:01'>"
           )
   
   Python310\lib\site-packages\pyarrow\tests\test_convert_builtin.py:1355: 
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _
   pyarrow\scalar.pxi:537: in pyarrow.lib.TimestampScalar.__repr__
       ???
   Python310\lib\site-packages\pyarrow\compute.py:262: in wrapper
       return func.call(args, options, memory_pool)
   pyarrow\_compute.pyx:367: in pyarrow._compute.Function.call
       ???
   pyarrow\error.pxi:144: in pyarrow.lib.pyarrow_internal_check_status
       ???
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _
   
   >   ???
   E   pyarrow.lib.ArrowInvalid: Cannot locate timezone 'UTC': Timezone 
database not found at "C:\Users\ContainerAdministrator\Downloads\tzdata"
   
   pyarrow\error.pxi:100: ArrowInvalid
   ____________________________ test_timestamp_scalar 
____________________________
   
       def test_timestamp_scalar():
   >       a = repr(pa.scalar("0000-01-01").cast(pa.timestamp("s")))
   
   Python310\lib\site-packages\pyarrow\tests\test_scalars.py:158: 
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _
   pyarrow\scalar.pxi:537: in pyarrow.lib.TimestampScalar.__repr__
       ???
   Python310\lib\site-packages\pyarrow\compute.py:262: in wrapper
       return func.call(args, options, memory_pool)
   pyarrow\_compute.pyx:367: in pyarrow._compute.Function.call
       ???
   pyarrow\error.pxi:144: in pyarrow.lib.pyarrow_internal_check_status
       ???
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _
   
   >   ???
   E   pyarrow.lib.ArrowInvalid: Cannot locate timezone 'UTC': Timezone 
database not found at "C:\Users\ContainerAdministrator\Downloads\tzdata"
   ```
   
   ### Component(s)
   
   Packaging, 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]

Reply via email to