Closed nuclearsandwich closed 4 years ago
Please provide steps to reproduce the problem.
Please provide steps to reproduce the problem.
Build test_launch_ros in Dashing. e.g. https://ci.ros2.org/job/ci_linux/9552/
This regression was introduce in #97.
Build test_launch_ros in Dashing. e.g. https://ci.ros2.org/job/ci_linux/9552/
Thanks for the quick release! :love_letter:
The implementation of setup_py_data includes a key for 'data_files' with a value of None if the attribute is not specified. As a result,
setup_py_data.get('data_files', [])
can returnNone
if no data_files are specified.When data_files is none it actually triggers a failure in colcon-core's get_data_files_mapping function:
An additional PR may be desired there to defensibly check for None before iterating but I figured I'd start here.