On Fri, 2010-06-04 at 09:45 +0200, [email protected] wrote: > Hi, > > I would like to ask: > > Does pyinstaller really support Python >= 1.5 as stated on website? > > "Multiversion: works under any version of Python from 1.5 up to 2.6."
Well, not really. The point is that nobody has really tested it under Python 1.5, at least since PyInstaller 1.2. but on the other hand PyInstaller does not require any specific Python feature that would prevent its usage with Python 1.5. In other words, if you fix all syntax errors that have surely slipped into the code, it should work. Surely, compatibility with 2.0 is much easier. BTW, I'm planning to officially drop 1.5 when I start working on 3.0. The way PyInstaller works means that we would need to keep a codebase which is both valid Python 2 and 3 code, which would be already hard without getting 1.5 into the picture. Do you have a specific need in this regard? -- Giovanni Bajo :: [email protected] Develer S.r.l. :: http://www.develer.com My Blog: http://giovanni.bajo.it Last post: Compile-time Function Execution in D -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pyinstaller?hl=en.
