Resolve bug in providing python versions
Pre-release
Pre-release
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 PR makes fixes so that the provided documentation is accurate.