Hunsu
Hunsu

Reputation: 3381

How to check if Django 1.3 project is also compatible with Django 1.6

I working on project where I must use things from an existing Django application. The application is written with Django 1.3. Is there a way to determine if it is possible to use it for a project that use in Django 1.6.

Upvotes: 1

Views: 97

Answers (1)

Benjamin Pollack
Benjamin Pollack

Reputation: 28420

The best way is to build a virtualenv with Django 1.6, install your app, and run its tests. There will likely be some small breaks—Django has changed since 1.3—but they should be relatively easy to patch up.

Upvotes: 5

Related Questions