On Saturday 04 February 2006 11:28, DjangoIstheBest wrote: > When I download a new version will I have to modify my current > application(s)?Will I have to install several Django versions on my > PC to use the correct one with an appropriate application(s) in > which the application(s) was/were developed? > Or will be the future versions backward compatible?
On the 'download' page on website, it says this in bold: "Note that, until 1.0, there is no guarantee of backwards-compatibility between versions" In magic-removal there are quite a few backwards incompatible changes, so yes, you will have to either upgrade your code (and database) or have multiple versions of django. Neither option is particularly hard - you can easily have 2 sets of django source code, just use different PYTHONPATHs for your different apps, and there will be full instructions for changing your code: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges Luke -- "I spilled spot remover on my dog. Now he's gone." (Steven Wright) Luke Plant || L.Plant.98 (at) cantab.net || http://lukeplant.me.uk/

