From 2ea1e0e58d3e0afffda4308a45e6c96693f3a7c9 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Wed, 5 Dec 2018 15:48:24 -0500 Subject: [PATCH] [1.11.x] Refs #30013 -- Doc'd that mysqlclient 1.3.14 and later isn't supported. --- docs/ref/databases.txt | 3 +-- tests/requirements/mysql.txt | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index f9372d030c..6145708128 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -381,8 +381,7 @@ Python 3. In order to use MySQLdb under Python 3, you'll have to install mysqlclient ~~~~~~~~~~~ -Django requires `mysqlclient`_ 1.3.3 or later. mysqlclient should mostly behave -the same as MySQLdb. +Django supports `mysqlclient`_ 1.3.3 through 1.3.13. MySQL Connector/Python ~~~~~~~~~~~~~~~~~~~~~~ diff --git a/tests/requirements/mysql.txt b/tests/requirements/mysql.txt index cec08055cf..8abfd961fc 100644 --- a/tests/requirements/mysql.txt +++ b/tests/requirements/mysql.txt @@ -1,2 +1 @@ -# Due to a bug that will be fixed in mysqlclient 1.3.7. -mysqlclient >= 1.3.7 +mysqlclient >= 1.3.7, < 1.3.14