Skip to content

Resolve bug in providing python versions

Pre-release
Pre-release
Compare
Choose a tag to compare
@evpearson evpearson released this 21 Oct 13:16
· 34 commits to main since this release
2e31e51

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.