rosdep install specific version of dependencies
Let's suppose I want to install scikit-image 0.15.0. I'm checking scikit-image lib within rosdep db (returns python-skimage-pip -> scikit-image). Then fill package.xml (as described here) with
<exec_depend version_eq="0.15.0">python-skimage-pip</exec_depend>
and type
rosdep install --from-path src/my_package
As a result I got scikit-image with newest version (0.18.1). How to force rosdep to follow defined version?