catkin_lint icon indicating copy to clipboard operation
catkin_lint copied to clipboard

Handle changed ntpath.isabs behaviour in Python 3.13 (#110)

Open AdamWill opened this issue 8 months ago • 1 comments

ntpath.isabs no longer considers paths that start with "/" to be absolute. This is correct behaviour on Windows but causes us problems, because our PathConstants use paths that start with / and expect these to always be considered absolute. To deal with this, let's just filter out paths that are absolute by ntpath or posixpath rules.

AdamWill avatar Jun 13 '24 21:06 AdamWill