Skip to content

Commit

Permalink
Pin catkin_lint version for python2 (#888)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-luedtke authored Oct 8, 2024
1 parent d23b9ad commit ed64703
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion industrial_ci/src/tests/source_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@
# (As of version 0.4.4 most of them are defined in env.sh).

function install_catkin_lint {
ici_install_pypi_pkgs_for_command catkin_lint "catkin-lint"
local catkin_lint_pkg="catkin-lint"
if [ "$ROS_PYTHON_VERSION" == "2" ]; then
catkin_lint_pkg="catkin-lint<1.6.23"
fi
ici_install_pypi_pkgs_for_command catkin_lint "$catkin_lint_pkg"
}

function run_clang_tidy {
Expand Down

0 comments on commit ed64703

Please sign in to comment.