Closed
Description
The blurb command relies on Python 3.5+ in order to run.
If run with an older Python interpreter, weird errors happen such as:
File "/usr/bin/blurb", line 123
def textwrap_body(body, *, subsequent_indent=''):
^
SyntaxError: invalid syntax
For newcomers to Python, this is hard to figure out.
blurb should error out if the Python version is too old.
I recommend that the code check the value of sys.version_info
and
error out with a message indicating that the Python version is too old.