yochju / latex-makefile

Automatically exported from code.google.com/p/latex-makefile
Other
0 stars 0 forks source link

Python 2.6 required in build script #104

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
This is a really minor issue.  The build script has the shebang line:

#!/usr/bin/env python2.6

which obviously doesn't work on my system with python2.7.  It's probably fine 
to leave the shebang line this way but to change the README to suggest running 
"python build" instead of the current "./build"

Original issue reported on code.google.com by amcna...@gmail.com on 15 Dec 2010 at 7:31

GoogleCodeExporter commented 9 years ago
This is fixed at the tip, now.  I test against sys.version_info to ensure a 
minimum version number (which, in retrospect, isn't really sufficient, because 
it doesn't test for Python 2 - I'll fix that).  Meanwhile, it should work for 
you, now.

Original comment by shiblon on 17 Dec 2010 at 3:09