Skip to content

Commit acf97aa

Browse files
authored
Remove python_cmake_module and set hints (#204)
* Stop using python_cmake_module. We really don't need it anymore, and can just use the builtin find_package(Python3). * Set hints to find the python version we actually want. The comment in the commit explains the reasoning behind it. Signed-off-by: Chris Lalancette <[email protected]>
1 parent 1fbd99b commit acf97aa

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

rosidl_generator_py/CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ if(BUILD_TESTING)
2222

2323
find_package(test_interface_files REQUIRED)
2424

25-
find_package(python_cmake_module REQUIRED)
26-
find_package(PythonExtra MODULE REQUIRED)
27-
2825
include(cmake/register_py.cmake)
2926
include(cmake/rosidl_generator_py_get_typesupports.cmake)
3027

rosidl_generator_py/cmake/rosidl_generator_py_generate_interfaces.cmake

+19-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,27 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
find_package(python_cmake_module REQUIRED)
16-
find_package(PythonExtra REQUIRED)
1715
find_package(rmw REQUIRED)
1816
find_package(rosidl_runtime_c REQUIRED)
1917
find_package(rosidl_typesupport_c REQUIRED)
2018
find_package(rosidl_typesupport_interface REQUIRED)
2119

20+
# By default, without the settings below, find_package(Python3) will attempt
21+
# to find the newest python version it can, and additionally will find the
22+
# most specific version. For instance, on a system that has
23+
# /usr/bin/python3.10, /usr/bin/python3.11, and /usr/bin/python3, it will find
24+
# /usr/bin/python3.11, even if /usr/bin/python3 points to /usr/bin/python3.10.
25+
# The behavior we want is to prefer the "system" installed version unless the
26+
# user specifically tells us othewise through the Python3_EXECUTABLE hint.
27+
# Setting CMP0094 to NEW means that the search will stop after the first
28+
# python version is found. Setting Python3_FIND_UNVERSIONED_NAMES means that
29+
# the search will prefer /usr/bin/python3 over /usr/bin/python3.11. And that
30+
# latter functionality is only available in CMake 3.20 or later, so we need
31+
# at least that version.
32+
cmake_minimum_required(VERSION 3.20)
33+
cmake_policy(SET CMP0094 NEW)
34+
set(Python3_FIND_UNVERSIONED_NAMES FIRST)
35+
2236
find_package(Python3 REQUIRED COMPONENTS Interpreter Development NumPy)
2337

2438
# Get a list of typesupport implementations from valid rmw implementations.
@@ -184,7 +198,9 @@ foreach(_typesupport_impl ${_typesupport_impls})
184198
${rosidl_generate_interfaces_TARGET}__rosidl_typesupport_c
185199
)
186200

187-
set_target_properties(${_target_name} PROPERTIES DEBUG_POSTFIX "${PythonExtra_POSTFIX}")
201+
if(WIN32 AND CMAKE_BUILD_TYPE STREQUAL "Debug")
202+
set_target_properties(${_target_name} PROPERTIES DEBUG_POSTFIX "_d")
203+
endif()
188204
# target_compile_options(${_target_name} PRIVATE ${_extension_compile_flags})
189205
# TODO(sloretz) use target_compile_options when python extension passes -Wpedantic
190206
set_target_properties(${_target_name} PROPERTIES COMPILE_OPTIONS "${_extension_compile_flags}")

rosidl_generator_py/package.xml

-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323

2424
<buildtool_export_depend>ament_cmake</buildtool_export_depend>
2525
<buildtool_export_depend>ament_index_python</buildtool_export_depend>
26-
<buildtool_export_depend>python_cmake_module</buildtool_export_depend>
2726
<buildtool_export_depend>rosidl_generator_c</buildtool_export_depend>
2827
<buildtool_export_depend>rosidl_pycommon</buildtool_export_depend>
2928
<buildtool_export_depend>rosidl_typesupport_c</buildtool_export_depend>
@@ -53,7 +52,6 @@
5352
<test_depend>ament_lint_common</test_depend>
5453
<test_depend>python3-numpy</test_depend>
5554
<test_depend>python3-pytest</test_depend>
56-
<test_depend>python_cmake_module</test_depend>
5755
<test_depend>rmw</test_depend>
5856
<test_depend>rosidl_cmake</test_depend>
5957

0 commit comments

Comments
 (0)