diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2025-03-19 10:21:10 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-03-19 02:21:35 -0700 |
| commit | 5bcf2e7277f6cd03626b7aa4258134075bbdde3f (patch) | |
| tree | 76249d1f4ab390768d1d4ea2de411fedf67c0eec /meta-python/recipes-devtools/python/python3-qrcode_8.0.bb | |
| parent | d24988f39c52148a19f1b9d88b69211392bdcfde (diff) | |
| download | meta-openembedded-5bcf2e7277f6cd03626b7aa4258134075bbdde3f.tar.gz | |
python3-qrcode: Upgrade 7.4.2 -> 8.0
Upgrade to release 8.0:
- Added support for Python 3.11 and 3.12
- Drop support for Python <=3.8
- Change local development setup to use Poetry
- Testsuite and code quality checks are done through Github Actions
- Code quality and formatting utilises ruff
- Removed typing_extensions as a dependency, as it's no longer
required with having Python 3.9+ as a requirement
- Only allow high error correction rate (qrcode.ERROR_CORRECT_H)
when generating QR codes with embedded images to ensure content
is readable
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-qrcode_8.0.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-qrcode_8.0.bb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-qrcode_8.0.bb b/meta-python/recipes-devtools/python/python3-qrcode_8.0.bb new file mode 100644 index 0000000000..dcd92cfe9d --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-qrcode_8.0.bb | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | SUMMARY = "QR Code image generator" | ||
| 2 | SECTION = "devel/python" | ||
| 3 | LICENSE = "MIT" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=4b802d2a65df4626623c79757f486af9" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "025ce2b150f7fe4296d116ee9bad455a6643ab4f6e7dce541613a4758cbce347" | ||
| 7 | |||
| 8 | inherit pypi python_poetry_core | ||
| 9 | |||
| 10 | RDEPENDS:${PN} = " \ | ||
| 11 | python3-six \ | ||
| 12 | python3-pillow \ | ||
| 13 | python3-pypng \ | ||
| 14 | python3-typing-extensions \ | ||
| 15 | " | ||
