mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Upgrade to release 2.5.3: - Allow Path objects to be used as directory parameter - Use same database URLs as Flask-SQLAlchemy - Document how to set up with init_app method - Document how to include a message in initial migrate - Remove checks for alembic 0.7.0. Flask-Migrate requires alembic >= 0.7 in its setup.py file, which makes all the checks for this version obsolete. - Use sys.executable in tests, also re-order imports - Cosmetic improvements to help messages Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
17 lines
489 B
BlitzBasic
17 lines
489 B
BlitzBasic
DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
|
|
|
|
SRC_URI[md5sum] = "707d4a5fd4e11d3113a1228aa7793176"
|
|
SRC_URI[sha256sum] = "a69d508c2e09d289f6e55a417b3b8c7bfe70e640f53d2d9deb0d056a384f37ee"
|
|
|
|
PYPI_PACKAGE = "Flask-Migrate"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
RDEPENDS_${PN} += "\
|
|
${PYTHON_PN}-flask-sqlalchemy \
|
|
${PYTHON_PN}-alembic \
|
|
${PYTHON_PN}-flask \
|
|
"
|