Changes between Initial Version and Version 1 of Ticket #31374


Ignore:
Timestamp:
Mar 17, 2020, 2:00:17 PM (4 years ago)
Author:
Mariusz Felisiak
Comment:

First of all django-pyodbc-azure < 1.11 is not compatible with Django 3.0, secondly it's a 3rd-party package so it's not an issue in Django itself, and finally, please don't use trac as a support channel.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31374

    • Property Resolutioninvalid
    • Property Status newclosed
    • Property Summary Runtime Error unable to solve from forums/ FAQRuntime Error unable to solve from forums/ FAQ.
  • Ticket #31374 – Description

    initial v1  
    11I am trying to make connection with MS SQL with following settings
    2 
     2{{{
    33DATABASES = {
    44    'default': {
     
    1414    }
    1515}
    16 
     16}}}
    1717I had to downgrade to : pip install 'django-pyodbc-azure<1.11' which was otherwise giving me a error of No Server/DSN found. However after downgrading when I execute "python manage.py makemigrations" or python manage.py runserver.
    1818
    1919Following is my error, which I am unable to understand. Any help would be of great help.
    2020Thanks in advance.
    21 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
     21
     22
     23{{{
    2224(venv) C:\Users\L_Sharma\PycharmProjects\Test1>python manage.py makemigrations
    2325Traceback (most recent call last):
     
    4951    class AbstractBaseUser(models.Model):
    5052RuntimeError: __class__ not set defining 'AbstractBaseUser' as <class 'django.contrib.auth.base_user.AbstractBaseUser'>. Was __classcell__ propagated to type.__new__?
    51 
    52 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
    53 
    54 
     53}}}
Back to Top