diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-11-20 09:22:08 +0100 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-11-25 13:29:59 -0800 |
| commit | 5781b7c82cf611a773be3f8f5866c9734ee338bf (patch) | |
| tree | 0e4ea91dd3f55bba6ab48af0d114ad78305d5a8b /meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb | |
| parent | 04688a94f73dbaef543c41abe23316905cb12107 (diff) | |
| download | meta-openembedded-5781b7c82cf611a773be3f8f5866c9734ee338bf.tar.gz | |
python3-alembic: upgrade 1.13.2 -> 1.13.3
Changelog:
==========
- Render if_exists and if_not_exists parameters in CreateTableOp, CreateIndexOp,
DropTableOp and DropIndexOp in an autogenerate context.
- Enhance version_locations parsing to handle paths containing newlines.
- Added support for Operations.create_table.if_not_exists and
Operations.drop_table.if_exists, adding similar functionality to render
IF [NOT] EXISTS for table operations in a similar way as with indexes.
- The pin for setuptools<69.3 in pyproject.toml has been removed.
MJ:
https://git.openembedded.org/meta-openembedded/commit/?h=styhead&id=4441545a5dc75120bb4e839d71c6f8fc500e917f
was backported into styhead causing:
| ERROR Missing dependencies:
| setuptools<69.3,>=61.0
| WARNING: exit code 1 from a shell command.
this upgrade resolves this issue (see last item in changelog)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb b/meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb new file mode 100644 index 0000000000..f046c3ebcd --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-alembic_1.13.3.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | DESCRIPTION = "A database migration tool for SQLAlchemy" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=00f8f5c8aab58c3e1cd61525a6675174" | ||
| 4 | |||
| 5 | inherit pypi python_setuptools_build_meta | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "203503117415561e203aa14541740643a611f641517f0209fcae63e9fa09f1a2" | ||
| 8 | |||
| 9 | RDEPENDS:${PN} += "\ | ||
| 10 | python3-dateutil \ | ||
| 11 | python3-editor \ | ||
| 12 | python3-mako \ | ||
| 13 | python3-sqlalchemy \ | ||
| 14 | python3-misc \ | ||
| 15 | " | ||
| 16 | |||
| 17 | BBCLASSEXTEND = "native nativesdk" | ||
