diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-10-15 11:47:08 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2021-10-15 17:40:19 -0400 |
commit | 237211139f5989444effa3fff7b62dcad7f2fb43 (patch) | |
tree | 3532dabd67ba9bc5642269deb5a26ec2a7cf0e53 /lib/sqlalchemy/dialects/mysql/aiomysql.py | |
parent | 165bc7529d858a8cd6c7daa409d091f7c728c20f (diff) | |
download | sqlalchemy-237211139f5989444effa3fff7b62dcad7f2fb43.tar.gz |
re-enable asnycmy >= 0.2.3; disable aiomysql totally
Change-Id: I94bc22db0462509003c8241d0ccef915fe6513c6
Diffstat (limited to 'lib/sqlalchemy/dialects/mysql/aiomysql.py')
-rw-r--r-- | lib/sqlalchemy/dialects/mysql/aiomysql.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/sqlalchemy/dialects/mysql/aiomysql.py b/lib/sqlalchemy/dialects/mysql/aiomysql.py index c5ba635c2..93d236058 100644 --- a/lib/sqlalchemy/dialects/mysql/aiomysql.py +++ b/lib/sqlalchemy/dialects/mysql/aiomysql.py @@ -11,9 +11,12 @@ r""" :connectstring: mysql+aiomysql://user:password@host:port/dbname[?key=value&key=value...] :url: https://github.com/aio-libs/aiomysql -.. warning:: The aiomysql dialect as of September, 2021 appears to be unmaintained - and no longer functions for Python version 3.10. Please refer to the - :ref:`asyncmy` dialect for current MySQL/MariaDD asyncio functionality. +.. warning:: The aiomysql dialect is not currently tested as part of + SQLAlchemy’s continuous integration. As of September, 2021 the driver + appears to be unmaintained and no longer functions for Python version 3.10, + and additionally depends on a significantly outdated version of PyMySQL. + Please refer to the :ref:`asyncmy` dialect for current MySQL/MariaDB asyncio + functionality. The aiomysql dialect is SQLAlchemy's second Python asyncio dialect. |