Saturday, December 29, 2012

Re: Django 1.5 - release date

Django 1.5 is close to being released.

I'm not sure how you do your development, but my process under Linux is to create a virtualenv (virtualenv myproject) then install the development version of Django (pip install git+git://github.com/django/django.git) and then begin the project (django-admin.py startproject myproject).

Every few days I will update django with the latest development changes (pip install --upgrade git+git://github.com/django/django.git).  When I get close to releasing the site, I stop updating Django and stick with whatever version I'm on (pip freeze > requirements.txt).  If Django still hasn't released the next version, by the time I launch the site, I go live, then update and test when the final version comes out.


On Fri, Dec 28, 2012 at 10:44 PM, Aidan Zhakypov <aidanxyz@gmail.com> wrote:
Does anyone know when Django 1.5 is going to be released as a stable version? If I want to start developing a production web site, should I write it on Django 1.4 or is it already ok to implement it on Django 1.5?

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/DgTQV-MpfhAJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment