Library documentation says that python versions should be provided like this:
python_versions = [
"cp36-cp36m"
"cp38-cp38"
]
This is, in fact, untrue. After 0.2.0, versions needed to be provided like
python_versions = [
"CP36_CP36M"
"CP38_CP38"
]
This release fixes bugs in the code so that the provided documentation is accurate.
In addition, this release fixes a bug that blocked the install of python packages because a python binary could not be looked up.