I discovered the module which I had intended to use as a version check via python -m cloud_maker didn’t actually work. There was no way to execute it, to begin with. It also turned out that sys.version_info wasn’t something that could be used with tuple unpacking in Python 2.
The --help option used to print the usage information, and then a traceback for a SystemExit exception. I narrowed this down to an overzealous try/except block, so now it recognizes SystemExit and KeyboardInterrupt and skips the traceback for those.
Finally, the documentation was enhanced slightly. I was rather surprised, when finding out how the version check was supposed to work, that there wasn’t the slightest bit in the README about how this was intended to be invoked. The slightest bit is now there.
This release is available as source on github, and as a wheel on PyPI.
Any and all bugs should be reported to the issue tracker on github.
Note: this release was actually made January 24th, but I forgot to write about it here (and tag the git repository) until February 4th.