pkg_resources is deprecated. It has been removed from the standard library in Python 3.12 and moved to setuptools from which it will also be removed with setuptools >= 81 at the end of 2025.
It is recommended to use importlib.resources and importlib.metadata instead.
So bootstrap.py has to be changed... but I don't know exactly how !
Another solution would be to pin setuptools<81 but it's not very satisfying.
pkg_resourcesis deprecated. It has been removed from the standard library in Python 3.12 and moved tosetuptoolsfrom which it will also be removed withsetuptools >= 81at the end of 2025.It is recommended to use
importlib.resourcesandimportlib.metadatainstead.So
bootstrap.pyhas to be changed... but I don't know exactly how !Another solution would be to pin
setuptools<81but it's not very satisfying.