diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2022-12-27 14:38:17 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-12-27 16:03:06 -0800 |
| commit | 888a2de91760b7d16b28443ddf8a27e9ad082d59 (patch) | |
| tree | c3817a7cde69673ca4909b14c3371bb7fb11df38 /meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb | |
| parent | 53226291ed037877651daa0ebd101f7c34c693b8 (diff) | |
| download | meta-openembedded-888a2de91760b7d16b28443ddf8a27e9ad082d59.tar.gz | |
python3-alembic: upgrade 1.9.0 -> 1.9.1
Changelog:
===========
-Fixed issue where server default compare would not work for string defaults
that contained backslashes, due to mis-rendering of these values when comparing
their contents.
-Implemented basic server default comparison for the Oracle backend; previously,
Oracle's formatting of reflected defaults prevented any matches from occurring.
-Adjusted SQLite's compare server default implementation to better handle
defaults with or without parens around them, from both the reflected and the
local metadata side.
-Adjusted SQL Server's compare server default implementation to better handle
defaults with or without parens around them, from both the reflected and the
local metadata side.
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb b/meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb new file mode 100644 index 0000000000..03a38d5ff3 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-alembic_1.9.1.bb | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | DESCRIPTION = "A database migration tool for SQLAlchemy" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f5a8522010db1a393833988dbe2c7f0b" | ||
| 4 | |||
| 5 | inherit pypi setuptools3 | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "f9f76e41061f5ebe27d4fe92600df9dd612521a7683f904dab328ba02cffa5a2" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "alembic" | ||
| 10 | |||
| 11 | RDEPENDS:${PN} += "\ | ||
| 12 | ${PYTHON_PN}-dateutil \ | ||
| 13 | ${PYTHON_PN}-editor \ | ||
| 14 | ${PYTHON_PN}-mako \ | ||
| 15 | ${PYTHON_PN}-sqlalchemy \ | ||
| 16 | ${PYTHON_PN}-misc \ | ||
| 17 | " | ||
| 18 | |||
| 19 | BBCLASSEXTEND = "native nativesdk" | ||
