I have been developing using Django 1.5 a lot. Is it worth the time to shift from Django 1.5 to Django 1.6 or Django 1.7? I know, In 1.7, migration is into the core of Django. How different is it from south?
Django 1.7 vs Django1.6 vs Django 1.5
5.2k Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in DJANGO
- Display images on Django Template Site
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Django invalid literal for int() with base 10:
- Removing URL features from tokens in NLTK
- Django Noob URL to from Root Page to sub Page
- Django Admin tables not displaying correctly
- Django with chartkick
- Django urls.py not rendering correct template
- django form errors before submit
- django admin: custom app_index with context
- Display multiple models in one view in Django
- Unexpected NoReverseMatch error when using include() in urls patterns
- Search for a key in django.core.cache
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- Django flush won't load fixtures
Related Questions in DJANGO-SOUTH
- South error, but not using it. "no South database module 'south.db.mysql'"
- Django south schemamigration KeyError
- How Django finds all the migrations
- Django migrations missing way to declare "needed_by"?
- Django: migrations for tables that are not linked to models
- Key longer than 255 chars in a UTF8 mysql database
- Does Django 1.10 still need South to manage migrations?
- Set default value on migration Django/South?
- How do Django in VIsual Studio use South migrate apps?
- Foriegn key returning DoesNotExist after schemamigration
- accessing model manager methods in datamigration
- Django model - changing options in a choices field and migrate
- Error when importing south with django after install
- Django: Failing at creating tables
- South Doesn't Seem to Like PostgreSQLUUIDField
Related Questions in DJANGO-1.5
- Django class based views - Direct url to particular method in class
- Self referencing one to many Model
- django sorl.thumbnail, no module named thumbnail.models
- django app: Cannot assign "''": "ImageText.link" must be a "Link" instance
- Installed Django with PIP, django.admin.py returns command not found. What am I doing wrong?
- Django 1.5 manage.py shell doesn't keep up with database - need to disable caching?
- Using custom login page to redirect admin user to admin interface in django 1.5
- django-pyodbc queries returning fields with ANSI Padding Status ON, how to strip out whitespace?
- Python Tuple to Dict, with additional list of keys
- Joining array to string from list comprehension results in join between all characters
- Reverse Not Found Error
- Django 1.5 NoReverseMatch at /dashboard/projects/
- django form without any fields
- Duplicate results in Q query involving many to one relation to a model
- Django custom decorator with cache_page error
Related Questions in DJANGO-1.6
- Slow django database operations on large (ish) dataset.
- Can't customize django ckeditor toolbar
- How to create label_command ind django1.10
- Django test model with FilerImageField
- Django - Session refreshes every time there's an ajax request
- django model field update on a special event
- Broken library in Django 1.6 - urls reverse / NoReverseMatch even when templates corrected
- Can not find "python manage.py reset" command parameters in django1.6
- Django 1.6: Extending project template through app template
- Django v1.6 debug-toolbar Middleware Error No .rsplit()
- django-tracking not compatible with Django 1.6
- Django: "Too many values to unpack" when calling user.objects.get()
- Setting up two different types of Users in Django 1.5/1.6
- Django 1.7 vs Django1.6 vs Django 1.5
- running all tests post django 1.6
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Django 1.6 is a relatively incremental update compared to Django 1.7.
Django 1.6 adds a few comfort features (i.e., simplified project templates and admin enabling by default) for new projects, and some minor overhauls in algorithms (i.e., model save). There are also a myriad of other features that make development relatively easier when compared to 1.5.
Django 1.7, as you've noted, includes the migration features. In addition, it forces Python 2.7 (which may or may not be an issue for you). The migration is based off of South, so it's similar to use. In addition to various improvements, the plugin focused on being database agnostic, improved autodetection and improved the migration file format.
With both of these updates, your workflow shouldn't change significantly.