One of the main reasons to keep 2.5 support was for the App Engine, but I believe it now supports 2.7. I don't know of any major features from 2.6 that we're missing. I guess you could check the compatibility file to get an idea. I know it's not even close to the way it was with 2.4. I couldn't wait to drop support for that. Now 2.7 on the other hand added a lot of cool features, like ordered dicts, set literals, dict and set comprehensions, and the argparse module. But dropping 2.6 support is still probably out of the question.
The only new syntax in 2.6 as far as I can tell is "except Exception as e" (with statements can be enabled in 2.5 with "from __future__ import with_statement"). New non-syntax features can be added manually to the compatibility file. Aaron Meurer On May 24, 2012, at 1:01 AM, Joachim Durchholz <[email protected]> wrote: > I just visited the python.org website and found that 2.5 does not get > security fixes anymore. The last release was in May 26th, 2011. > > What's the policy for which Python versions SymPy should support? > > > Possible reasons to keep 2.5 support: > > Note that it is possible to run unsafe software if you know how to keep > untrusted input away from it. In other words, if we have really compelling > reasons to keep 2.5 support alive, we can do so. > > > Possible reasons to drop 2.5 support: > > See http://docs.python.org/whatsnew/2.6.html for changes between 2.5 and 2.6. > For us, it's essentially a list of features that we can now freely use. (For > the stuff I have been working on, making 'with' a nonoptional feature and > better wrapper support would have been nice.) > > > Any further ideas on the issue? > Do we have an idea how many people are using SymPy with Python 2.5? > > -- > You received this message because you are subscribed to the Google Groups > "sympy" 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/sympy?hl=en. > -- You received this message because you are subscribed to the Google Groups "sympy" 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/sympy?hl=en.
