It seems the configparser dependency listed in setup.cfg is unneeded since the move to supporting only python3. configparser is part of python3, and while there is https://github.com/jaraco/configparser to backport configparser changes in later versions of python, it requires being called via from backports import configparser, which is not being done in apy.py (so it's using just the stock configparser included in python).
It seems the configparser dependency listed in setup.cfg is unneeded since the move to supporting only python3. configparser is part of python3, and while there is https://github.com/jaraco/configparser to backport configparser changes in later versions of python, it requires being called via
from backports import configparser, which is not being done in apy.py (so it's using just the stock configparser included in python).