Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Does anyone know the minimum version of python required for peewee? I haven't been able to find it anywhere.

share|improve this question

3 Answers

up vote 2 down vote accepted

It uses with with a __future__ import. It has a minimum of at least 2.5a1.

share|improve this answer
peewee is 2.6+ and 3.2+ currently. – coleifer Apr 20 at 17:13

It does not appear that the minimum python requirement is stated in any Peewee documentation, however I can venture an educated guess: per the github repo readme, for flask-peewee (a project by the same author directly related to his peewee project), python 2.5 or higher is required.

It is not certain, but a high likelihood the developer has programmed both projects with the same environment and same minimum version would apply: python 2.5.

share|improve this answer

I'll update the readme with the information, but 2.5 is the min.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.