Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pylons - use Python 2.5 or 2.6?

Tags:

python

pylons

Which version of Python is recommended for Pylons, and why?

like image 512
resopollution Avatar asked Mar 01 '23 14:03

resopollution


2 Answers

Pylons itself says it needs at least 2.3, and recommends 2.4+. Since 2.6 is production ready, I'd use that.

like image 76
Dominic Rodger Avatar answered Mar 10 '23 19:03

Dominic Rodger


You can use Python 2.3 to 2.6, though 2.3 support will be dropped in the next version. You can't use Python 3 yet.

There's no real reason to favor Python 2.5 or 2.6 at this point. Use what works best for you.

like image 40
Naaff Avatar answered Mar 10 '23 21:03

Naaff