1
0
mirror of https://github.com/django/django.git synced 2025-10-31 01:25:32 +00:00

Refs #32355 -- Bumped mysqlclient requirement to >= 1.4.3.

mysqlclient 1.4.3 is the first release to support Python 3.8.
This commit is contained in:
Mariusz Felisiak
2023-01-05 16:34:14 +01:00
committed by GitHub
parent 6c86495bce
commit 7d9329935a
4 changed files with 7 additions and 4 deletions

View File

@@ -31,9 +31,9 @@ from .schema import DatabaseSchemaEditor
from .validation import DatabaseValidation
version = Database.version_info
if version < (1, 4, 0):
if version < (1, 4, 3):
raise ImproperlyConfigured(
"mysqlclient 1.4.0 or newer is required; you have %s." % Database.__version__
"mysqlclient 1.4.3 or newer is required; you have %s." % Database.__version__
)