pkg_resources is deprecated, and warns with newer Python:
/bitcoin/test/lint/lint-python.py:12: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html
import pkg_resources
Switch to using importlib.metadata, which has existed since Python 3.8.
See: https://docs.python.org/3/library/importlib.metadata.html#module-importlib.metadata. See: https://setuptools.pypa.io/en/latest/pkg_resources.html