[Poll] Kinetic users: Kinetic EOL in April, what is your migration plan?

Unfortunately I do not, I tend to patch them as I encounter them. But if there is a community thread to aggregate them I’ll gladly post there the now ones I find that I’m not at liberty to patch on the fly.

A few ones are pending review if anyone is interested in trying those in Noetic:

Edit
A quick look at the current state of desktop full there seem to still be plenty of installed files that have a Python 2 shebang line. This is far from capturing the python2/3 incompatibilities as some of these files may not even be scripts so their shebang line may never be used. And much code in these packages or others may contain python2-only code regardless of their shebang lines. But that is a place to start I suppose.

$ docker run -it --rm osrf/ros:noetic-desktop-full
# cd /opt/ros/noetic/lib
# apt update && apt upgrade -y
# grep -r "env python$" | wc -l
105
2 Likes