diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-07-24 18:29:25 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2016-07-24 18:29:46 -0400 |
commit | 98c66d19a0571fa0ddbffbe7846b698a9a97e0e9 (patch) | |
tree | 7991442001032722574ede89b69fa56cf565a68f | |
parent | ab244748d65ac91ce9223f65cdf416a9be000399 (diff) | |
download | sqlalchemy-98c66d19a0571fa0ddbffbe7846b698a9a97e0e9.tar.gz |
- don't use pymysql at all for JSON, there's Py2K failures also
Change-Id: I39a574ea72f5c7af0084dee3169679c5f534cb8b
-rw-r--r-- | test/requirements.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/requirements.py b/test/requirements.py index ce05389a6..5f366ba47 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" ]) |