shiblon / latex-makefile

A Makefile for LaTeX - drop it in, type make, and magic happens.
Other
185 stars 30 forks source link

Python 2.6 required in build script #117

Closed shiblon closed 8 years ago

shiblon commented 8 years ago

Originally reported on Google Code with ID 104

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"

Reported by amcnabb8 on 2010-12-15 19:31:37

shiblon commented 8 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.

Reported by shiblon on 2010-12-17 15:09:18