mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-06-14 20:14:01 +00:00
Breaking changes ================ - Connection.ping() change the default to not reconnect and deprecate reconnect argument. Create a new connection if you want to reconnect. - Error classes in Cursor class are removed. - connect() arguments db and passwd now emit DeprecationWarning. Use database and password instead. - Reorganize TLS connection behavior. - PyMySQL uses TLS by default when server supports it. Use ssl_disabled=True to prohibit SSL. - When ssl_verify_cert=True, ssl_verify_identity=True, an ssl.SSLContext is passed, or when any other SSL option is configured, the connection requires SSL and raises OperationalError (CR_SSL_CONNECTION_ERROR) if the server doesn't support it. Other changes ============== - Support MySQL 8 row/column alias syntax in executemany INSERT regex. - Expose SQLSTATE on MySQL protocol exceptions without changing exception formatting. - Reject non-finite decimal.Decimal query parameters - Connection.set_charset(charset) now emits DeprecationWarning. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
19 lines
620 B
BlitzBasic
19 lines
620 B
BlitzBasic
SUMMARY = "A pure-Python MySQL client library"
|
|
DESCRIPTION = " \
|
|
This package contains a pure-Python MySQL client library, based on PEP 249 \
|
|
Most public APIs are compatible with mysqlclient and MySQLdb. \
|
|
"
|
|
SECTION = "devel/python"
|
|
HOMEPAGE = "https://pymysql.readthedocs.io"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=528175c84163bb800d23ad835c7fa0fc"
|
|
|
|
SRC_URI[sha256sum] = "6c7b17ca686988104d7426c27895b455cdeea3e9d3ceb1270f0c3704fead8c33"
|
|
|
|
PYPI_PACKAGE = "pymysql"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
RDEPENDS:${PN} += "python3-cryptography"
|