From d191a87770b0b35d3a08b4cd634a35810923e3c9 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Thu, 7 Jan 2021 00:06:56 +0200 Subject: python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22 Upgrade to release 1.3.22: - Fixed regression which occured due to #5755 which implemented isolation level support for Oracle. It has been reported that many Oracle accounts don't actually have permission to query the v$transaction view so this feature has been altered to gracefully fallback when it fails upon database connect, where the dialect will assume "READ COMMITTED" is the default isolation level as was the case prior to SQLAlchemy 1.3.21. However, explicit use of the Connection.get_isolation_level() method must now necessarily raise an exception, as Oracle databases with this restriction explicitly disallow the user from reading the current isolation level. Signed-off-by: Leon Anavi Acked-by: Trevor Gamblin Signed-off-by: Khem Raj --- .../python/python3-sqlalchemy_1.3.20.bb | 20 -------------------- .../python/python3-sqlalchemy_1.3.22.bb | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 20 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb create mode 100644 meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb deleted file mode 100644 index e8f598ada3..0000000000 --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb +++ /dev/null @@ -1,20 +0,0 @@ -DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \ -application developers the full power and flexibility of SQL" -HOMEPAGE = "http://www.sqlalchemy.org/" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2" - -SRC_URI[md5sum] = "40200b570274446a05959abd3fa81778" -SRC_URI[sha256sum] = "d2f25c7f410338d31666d7ddedfa67570900e248b940d186b48461bd4e5569a1" - -PYPI_PACKAGE = "SQLAlchemy" -inherit pypi setuptools3 - -RDEPENDS_${PN} += " \ - ${PYTHON_PN}-json \ - ${PYTHON_PN}-pickle \ - ${PYTHON_PN}-logging \ - ${PYTHON_PN}-netclient \ - ${PYTHON_PN}-numbers \ - ${PYTHON_PN}-threading \ -" diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb new file mode 100644 index 0000000000..cf127241db --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \ +application developers the full power and flexibility of SQL" +HOMEPAGE = "http://www.sqlalchemy.org/" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2" + +SRC_URI[sha256sum] = "758fc8c4d6c0336e617f9f6919f9daea3ab6bb9b07005eda9a1a682e24a6cacc" + +PYPI_PACKAGE = "SQLAlchemy" +inherit pypi setuptools3 + +RDEPENDS_${PN} += " \ + ${PYTHON_PN}-json \ + ${PYTHON_PN}-pickle \ + ${PYTHON_PN}-logging \ + ${PYTHON_PN}-netclient \ + ${PYTHON_PN}-numbers \ + ${PYTHON_PN}-threading \ +" -- cgit 1.2.3-korg