From 98c66d19a0571fa0ddbffbe7846b698a9a97e0e9 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 24 Jul 2016 18:29:25 -0400 Subject: [PATCH] - don't use pymysql at all for JSON, there's Py2K failures also Change-Id: I39a574ea72f5c7af0084dee3169679c5f534cb8b --- test/requirements.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/requirements.py b/test/requirements.py index ce05389a69..5f366ba478 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -577,7 +577,7 @@ class DefaultRequirements(SuiteRequirements): not config.db.dialect._is_mariadb and # workaround for: # https://github.com/PyMySQL/PyMySQL/issues/488 - not (config.db.dialect.driver == 'pymysql' and util.py3k), + not (config.db.dialect.driver == 'pymysql'), "postgresql >= 9.3" ]) -- 2.47.3