h-vetinari commented on issue #36908: URL: https://github.com/apache/arrow/issues/36908#issuecomment-1713314299
Great news! Like with [grpc](https://github.com/conda-forge/grpc-cpp-feedstock/pull/315), the problem turned out to [resolve](https://github.com/conda-forge/arrow-cpp-feedstock/pull/1144) itself through upgrading abseil. :) While looking at this, I did notice something else that's a bit strange: ``` NOTE WHY? [...] vvvv vvv WARNING (pyarrow,lib/python3.10/site-packages/pyarrow/libarrow_python_flight.dylib): lib/python3.8/site-packages/pyarrow/libarrow_python.dylib not found in any packages INFO (pyarrow,lib/python3.10/site-packages/pyarrow/libarrow_python_flight.dylib): Needed DSO lib/libarrow_flight.1300.dylib found in Users/runner/miniforge3/conda-bld::libarrow-13.0.0-hb1d2c99_4_cpu INFO (pyarrow,lib/python3.10/site-packages/pyarrow/libarrow_python_flight.dylib): Needed DSO lib/libarrow.1300.dylib found in Users/runner/miniforge3/conda-bld::libarrow-13.0.0-hb1d2c99_4_cpu INFO (pyarrow,lib/python3.10/site-packages/pyarrow/libarrow_python_flight.dylib): Needed DSO lib/libc++.1.dylib found in conda-forge::libcxx-16.0.6-hd57cbcb_0 INFO (pyarrow,lib/python3.10/site-packages/pyarrow/libarrow_python_flight.dylib): Needed DSO /Applications/Xcode_13.2.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.0.sdk/usr/lib/libSystem.B.dylib found in $SYSROOT INFO (pyarrow,lib/python3.10/site-packages/pyarrow/_hdfs.cpython-310-darwin.so): lib/python3.10/site-packages/pyarrow/libarrow_python.dylib found in this package [...] ^^^^ ^^^ NOTE Compare ``` It looks like `libarrow_python_flight.dylib` somehow gets linked to the wrong `arrow_python`, but only on osx. I've tried to determine where this might be coming from in the respective [`CMakeLists.txt`](https://github.com/apache/arrow/blob/main/python/CMakeLists.txt), but didn't manage. Of course, it's also not impossible that this is somehow a false positive from conda. In any case, it seems to not matter too much - the matching `libarrow_python` and `libarrow_python_flight` end up in the final environment, and that seems to be enough to run correctly. -- 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]
