On installation there were sometimes errors due to missing pkg_resources. That can be solved by pip installing setuptools. That said, using importlib to get the version removes this dependency. https://docs.python.org/3/library/importlib.html is part of the standard base Python.
Description
On installation there were sometimes errors due to missing
pkg_resources
. That can be solved bypip installing setuptools
. That said, using importlib to get the version removes this dependency. https://docs.python.org/3/library/importlib.html is part of the standard base Python.Changes
Tests