Bug #104120 Connector / Python not compatible with Django 2.2 for import error
Submitted: 26 Jun 2021 13:36 Modified: 3 Mar 2022 1:08
Reporter: Todd Kassaki Email Updates:
Status: Can't repeat Impact on me:
None 
Category:Connector / Python Severity:S3 (Non-critical)
Version:>8.0.24 OS:Windows
Assigned to: CPU Architecture:x86

[26 Jun 2021 13:36] Todd Kassaki
Description:
mysql-connector-python is not compatible with Django 2.2.23

How to repeat:
Install Django 2.2.23
Install mysql-connector-python 8.0.24

DATABASES = {
    'default': {
        'ENGINE': 'mysql.connector.django',
        'NAME': 'live',
        'USER': '',
        'PASSWORD': '',
        'OPTIONS': {
            'charset': 'utf8mb4',  # <--- Use this
            'raise_on_warnings': True,
            'compress': True,
            'buffered': True,
            'get_warnings': True,
            'use_pure': True,
        },
        'CONN_MAX_AGE': 1,
    },
}

Suggested fix:
Not yet
[23 Feb 2022 16:15] MySQL Verification Team
Hello Todd Kassaki,

Thank you for the bug report.
I tried to reproduce your issue on windows 10 with Django 2.2.23 and Connector/Python 8.0.24 but I am not seeing any issues at my end.

Regards,
Ashwini Patil
[3 Mar 2022 1:08] Todd Kassaki
Sorry for inconvenience, update problem related version, please help to review again.