mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-03-22 14:09:20 +00:00
Changelog: =========== - Add support for Python 3.11, 3.12, 3.13, 3.14. - Drop support for Python 3.7, 3.8, 3.9. - PRESERVE_STERILITY global is replaced with preserve_sterility function argument. - New formatting options: headersglobalalign, headersalign, colglobalalign. - New output format: "colon_grid" (Pandoc grid_tables with alignment) - Various bug fixes. - Improved error messages. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
495 B
BlitzBasic
22 lines
495 B
BlitzBasic
SUMMARY = "Pretty-print tabular data"
|
|
HOMEPAGE = "https://github.com/astanin/python-tabulate"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=6ad1430c0c4824ec6a5dbb9754b011d7"
|
|
|
|
SRC_URI[sha256sum] = "e2cfde8f79420f6deeffdeda9aaec3b6bc5abce947655d17ac662b126e48a60d"
|
|
|
|
inherit pypi python_setuptools_build_meta
|
|
|
|
DEPENDS += " \
|
|
python3-setuptools-scm-native \
|
|
python3-toml-native \
|
|
"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-html \
|
|
python3-core \
|
|
python3-io \
|
|
python3-math \
|
|
python3-profile \
|
|
"
|