From: Mike Bayer Date: Sun, 24 Jul 2016 22:29:25 +0000 (-0400) Subject: - don't use pymysql at all for JSON, there's Py2K failures also X-Git-Tag: rel_1_1_0b3~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98c66d19a0571fa0ddbffbe7846b698a9a97e0e9;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git - don't use pymysql at all for JSON, there's Py2K failures also Change-Id: I39a574ea72f5c7af0084dee3169679c5f534cb8b --- 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" ])