BewareMyPower commented on pull request #9268: URL: https://github.com/apache/pulsar/pull/9268#issuecomment-767226338
The PythonLibs and Boost.Python dependency that are found by CMake are still Python2 related stuff. ``` -- Boost version: 1.58.0 -- Found the following Boost libraries: -- program_options -- regex -- system -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython2.7.so (found version "2.7.12") -- PYTHON: 2.7.12 -- DETECTED Python 3 -- Boost version: 1.58.0 -- Found the following Boost libraries: -- python-py27 ``` The C++ tests CI environment is in image `apachepulsar/pulsar-build:ubuntu-16.04`, I think you can have a test in your local environment with the image. ```bash $ ls /usr/lib/x86_64-linux-gnu/libboost_python*.so /usr/lib/x86_64-linux-gnu/libboost_python-py27.so /usr/lib/x86_64-linux-gnu/libboost_python.so /usr/lib/x86_64-linux-gnu/libboost_python-py35.so $ ls /usr/lib | grep python python2.7 python3 python3.5 ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
