Re: Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2016-01-25 Thread amarshall
Been a while.I forgot if I solved it using that. However I did create different environments using env wrapper and do an uninstall of old django and complete install to the newest version. Fixing small errors as they arise. On Saturday, May 30, 2015 at 10:21:45 AM UTC-4, dc wrote: > > Were you

Re: Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2015-05-30 Thread dc
Were you able to solve the problem @amarshall? I have the exact same error, do let me know please! On Tuesday, March 31, 2015 at 8:04:23 PM UTC+5:30, Filipe Ximenes wrote: > > Thats strange. > Are you using pip to install dependencies? Try uninstalling everything and > reinstalling again. >

Re: Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2015-03-31 Thread Filipe Ximenes
Thats strange. Are you using pip to install dependencies? Try uninstalling everything and reinstalling again. Make sure INSTALLED_APPS is not being defined somewhere else in the code. Does the error persists if you set DEBUG = False locally? On Tue, Mar 31, 2015 at 10:21 AM, amarshall

Re: Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2015-03-31 Thread amarshall
Hi Filipe, I have few apps installed. When I comment out the tastypie line my app builds but gets an error in production because tastypie app isn't found. Here it is: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes',

Re: Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2015-03-31 Thread Filipe Ximenes
Can you show us your INSTALED_APPS? It may be the case you have a lot of apps installed and is not seeing a duplicate reference to tastypie. On Mar 29, 2015 9:43 PM, "amarshall" wrote: > Hi, > > So I updated my django project from django 1.6 to 1.7.7 and when I run >

Upgrade to django 1.7- ImproperlyConfigured -Tastypie label duplicate? help

2015-03-29 Thread amarshall
Hi, So I updated my django project from django 1.6 to 1.7.7 and when I run "python manage.py migrate" I get this error stating that I have a duplicate label. Here's the traceback Creating tables... Installing custom SQL... Installing indexes... Running migrations: Applying