robotology / icub-models

Official URDF and SDF models of the iCub humanoid robot.
Creative Commons Attribution Share Alike 4.0 International
33 stars 34 forks source link

Reorder python-related find_package calls #137

Closed traversaro closed 2 years ago

traversaro commented 2 years ago

find_package(pybind11) depending on the pybind11 version can use old variants of FindPython. By calling find_package(Python3) first we ensure that the recommended variant FindPython3 is used.

GiulioRomualdi commented 2 years ago

Thank you @traversaro