Users are getting this warning on newer Python versions:
$ ./vercheck.py -l
./vercheck.py:13: DeprecationWarning: The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives
from distutils.version import LooseVersion
This is due to PEP 632, which will deprecate the Distutils package in the near future.
We need to re-implement the same features with setuptools.