Skip to content

Commit 23a7a15

Browse files
authored
apacheGH-14943: [Python] Fix pyarrow.get_libraries() order (apache#14944)
pyarrow.get_libraries() returns ['arrow', 'arrow_python'] but it should be ['arrow_python', 'arrow'] because libarrow_python.so depends on libarrow.so. * Closes: apache#14943 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 4e9158d commit 23a7a15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pyarrow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ def get_libraries():
415415
Return list of library names to include in the `libraries` argument for C
416416
or Cython extensions using pyarrow
417417
"""
418-
return ['arrow', 'arrow_python']
418+
return ['arrow_python', 'arrow']
419419

420420

421421
def create_library_symlinks():

0 commit comments

Comments
 (0)