Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-44614: [Python][C++] Add version suffix to libarrow_python* librar…
…ies (#44702) ### Rationale for this change We are currently not setting library version suffixes for arrow python C++ libraries but we do so for libarrow C++. ### What changes are included in this PR? Add the same logic that we use for libarrow. ### Are these changes tested? I've validated manually that the suffixes are generated. ``` tree | grep libarrow_python │ │ ├── libarrow_python.so -> libarrow_python.so.1900 │ │ ├── libarrow_python.so.1900 -> libarrow_python.so.1900.0.0 │ │ ├── libarrow_python.so.1900.0.0 │ │ ├── libarrow_python.pxd │ ├── libarrow_python.so -> libarrow_python.so.1900 │ ├── libarrow_python.so.1900 -> libarrow_python.so.1900.0.0 │ ├── libarrow_python.so.1900.0.0 ``` ### Are there any user-facing changes? We will generate so libraries with version suffixes. * GitHub Issue: #44614 Authored-by: Raúl Cumplido <[email protected]> Signed-off-by: Jacob Wujciak-Jens <[email protected]>
- Loading branch information