New comment by classabbyamp on void-packages repository https://github.com/void-linux/void-packages/pull/40400#issuecomment-1308095539 Comment: yeah it looks like they didn't consider newer python versions for this. could totally patch out the dependency with requirements.txt: ```diff - importlib-resources>=1.3 + importlib-resources>=1.3; python_version < '3.9' ``` all the places they use the library (see https://github.com/GNS3/gns3-server/pull/2133): ```diff - import importlib_resources + try: + from importlib import resources as importlib_resources + except ImportError: + import importlib_resources ```