eddelbuettel opened a new issue, #402:
URL: https://github.com/apache/arrow-nanoarrow/issues/402

   Following  I `pip install -e .` on the current repo and `pytest -vvx` I get
   
   ```sh
   tests/test_iterator.py::test_iterator_nullable_fixed_size_list FAILED        
                     [ 66%]
   
   =============================================== FAILURES 
================================================
   ________________________________ test_iterator_nullable_fixed_size_list 
_________________________________
   
       def test_iterator_nullable_fixed_size_list():
           pa = pytest.importorskip("pyarrow")
           items = [[1, 2, 3], [4, 5, 6], [7, 8, None], None]
           array = pa.array(items, pa.list_(pa.int64(), 3))
           assert list(iterator(array)) == items
       
           sliced = array[1:]
           assert list(iterator(sliced)) == [[4, 5, 6], [7, 8, None], None]
       
           # mask argument only available for pyarrow >= 15.0.0
   >       array_sliced_child = pa.FixedSizeListArray.from_arrays(
               array.values[3:], 3, mask=pa.array([False, False, True])
           )
   
   tests/test_iterator.py:285: 
   _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _
   
   >   ???
   E   TypeError: from_arrays() got an unexpected keyword argument 'mask'
   
   pyarrow/array.pxi:2553: TypeError
   ======================================== short test summary info 
========================================
   FAILED tests/test_iterator.py::test_iterator_nullable_fixed_size_list - 
TypeError: from_arrays() got an unexpected keyword argument 'mask'
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures 
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   ===================================== 1 failed, 84 passed in 0.47s 
======================================
   edd@rob:~/git/arrow-nanoarrow/python(main)$ 
   ```
   
   My `dist-packages` has `pyarrow 15.0.0` so that should be current. Any other 
suspects?  


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