Bumped minimum supported mysqlclient version to 1.3.7.
Follow up to ad9390bba2
.
This commit is contained in:
parent
b0a2a2b07e
commit
98e78ac754
|
@ -32,8 +32,8 @@ from .schema import DatabaseSchemaEditor # isort:skip
|
||||||
from .validation import DatabaseValidation # isort:skip
|
from .validation import DatabaseValidation # isort:skip
|
||||||
|
|
||||||
version = Database.version_info
|
version = Database.version_info
|
||||||
if version < (1, 3, 3):
|
if version < (1, 3, 7):
|
||||||
raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)
|
raise ImproperlyConfigured('mysqlclient 1.3.7 or newer is required; you have %s.' % Database.__version__)
|
||||||
|
|
||||||
|
|
||||||
# MySQLdb returns TIME columns as timedelta -- they are more like timedelta in
|
# MySQLdb returns TIME columns as timedelta -- they are more like timedelta in
|
||||||
|
|
|
@ -229,7 +229,8 @@ supports PostgreSQL 9.4 and higher.
|
||||||
Miscellaneous
|
Miscellaneous
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
* ...
|
* The minimum supported version of ``mysqlclient`` is increased from 1.3.3 to
|
||||||
|
1.3.7.
|
||||||
|
|
||||||
.. _deprecated-features-2.1:
|
.. _deprecated-features-2.1:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue