pitrou commented on PR #14074:
URL: https://github.com/apache/arrow/pull/14074#issuecomment-1245395301

   @AlenkaF You might try this patch to fix the AppVeyor error:
   ```diff
   diff --git a/python/pyarrow/_compute.pyx b/python/pyarrow/_compute.pyx
   index b9594d90e..2aa65e75c 100644
   --- a/python/pyarrow/_compute.pyx
   +++ b/python/pyarrow/_compute.pyx
   @@ -2613,7 +2613,7 @@ def register_scalar_function(func, function_name, 
function_doc, in_types,
            raise TypeError(
                "in_types must be a dictionary of DataType")
    
   -    c_arity = CArity(num_args, func_spec.varargs)
   +    c_arity = CArity(<int> num_args, func_spec.varargs)
    
        if "summary" not in function_doc:
            raise ValueError("Function doc must contain a summary")
   ```


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