diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2020-08-27 17:55:00 +0300 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2020-08-31 08:27:14 -0700 |
| commit | 2fbcbeb2d6eb446427674e28baa587b7214cdfd6 (patch) | |
| tree | fb7aff058519b55d81703b526587827250cf83a1 /meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb | |
| parent | 0507ca296bfa6ea6a88c164b1344f592361486df (diff) | |
| download | meta-openembedded-2fbcbeb2d6eb446427674e28baa587b7214cdfd6.tar.gz | |
python3-flask-migrate: Upgrade 2.5.2 -> 2.5.3
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>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb new file mode 100644 index 0000000000..54fa1dd972 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.5.3.bb | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | DESCRIPTION = "SQLAlchemy database migrations for Flask applications using Alembic" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85" | ||
| 4 | |||
| 5 | SRC_URI[md5sum] = "707d4a5fd4e11d3113a1228aa7793176" | ||
| 6 | SRC_URI[sha256sum] = "a69d508c2e09d289f6e55a417b3b8c7bfe70e640f53d2d9deb0d056a384f37ee" | ||
| 7 | |||
| 8 | PYPI_PACKAGE = "Flask-Migrate" | ||
| 9 | |||
| 10 | inherit pypi setuptools3 | ||
| 11 | |||
| 12 | RDEPENDS_${PN} += "\ | ||
| 13 | ${PYTHON_PN}-flask-sqlalchemy \ | ||
| 14 | ${PYTHON_PN}-alembic \ | ||
| 15 | ${PYTHON_PN}-flask \ | ||
| 16 | " | ||
