You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix python 3.13 compatibility for ResourcePath (#177)
This commit replaces `_file_relative_to` which uses some private pathlib
internals, by a normal `path.relative_to()` lookup to convert file paths
to resource paths. This is expected to work on all platforms (py33 ... py313)
the same way.