Re: Django 1.7 and Python 2.6

2014-09-28 Thread François Schiettecatte
Russell Thanks, this the answer I was looking for, I think virtualenv is the way to go. Cheers François On Sep 27, 2014, at 7:14 PM, Russell Keith-Magee wrote: > > Out of the box, it won't work - but if maintaining an internal fork that adds > Python 2.6 compatibility back in shouldn't be

Re: Django 1.7 and Python 2.6

2014-09-27 Thread Russell Keith-Magee
Out of the box, it won't work - but if maintaining an internal fork that adds Python 2.6 compatibility back in shouldn't be *too* difficult. When we drop support for a Python version, we don't go out of our way to break compatibility with that version. It's more like a gradual process where langua

Re: Django 1.7 and Python 2.6

2014-09-27 Thread phil...@bailey.st
Hello there, docker might do the job. Cheers, Phillip On 27/09/14 20:42, Babatunde Akinyanmi wrote: > Hi, > If you can download in your server then you can install python 2.7+ into > your virtenv. > > On 27 Sep 2014 19:54, "François Schiettecatte" > wrote: >

Re: Django 1.7 and Python 2.6

2014-09-27 Thread Babatunde Akinyanmi
Hi, If you can download in your server then you can install python 2.7+ into your virtenv. On 27 Sep 2014 19:54, "François Schiettecatte" wrote: > Hi > > I know that Django 1.7 does not officially run on Python 2.6: > > > https://docs.djangoproject.com/en/1.7/releases/1.7/#python-compatibility >

Django 1.7 and Python 2.6

2014-09-27 Thread François Schiettecatte
Hi I know that Django 1.7 does not officially run on Python 2.6: https://docs.djangoproject.com/en/1.7/releases/1.7/#python-compatibility Unfortunately I am stuck with Python 2.6 on a number of servers but would like to migrate to Django 1.7. Does anyone run that configuration?