summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python/python3-qrcode_7.4.2.bb
Commit message (Collapse)AuthorAgeFilesLines
* python3-qrcode: Upgrade 7.4.2 -> 8.0Leon Anavi2025-03-191-15/+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>
* python3-qrcode: switch to PEP-517 build backendalperak2024-08-091-2/+1
| | | | | | | | | | | The project has a proper pyproject.toml which declares the setuptools.build.meta PEP-517 backend. Fix: WARNING: python3-qrcode-7.4.2-r0 do_check_backend: QA Issue: inherits setuptools3 but has pyproject.toml with setuptools.build_meta, use the correct class [pep517-backend] Signed-off-by: alperak <alperyasinak1@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-qrcode: add missing run-time dependenciesBartosz Golaszewski2023-06-061-1/+6
| | | | | | | Add missing RDEPENDS for this package. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-qrcode: upgrade 7.3.1 -> 7.4.2Wang Mingyu2023-02-121-0/+11
Changelog: ========== - Allow pypng factory to allow for saving to a string (like qr.save("some_file.png")) in addition to file-like objects. - Fix bad over-optimization in v7.4 that broke large QR codes. Thanks to mattiasj-axis! - Restructure the factory drawers, allowing different shapes in SVG image factories as well. - Add a --factory-drawer option to the qr console script. - Optimize the output for the SVGPathImage factory (more than 30% reduction in file sizes). - Add a pypng image factory as a pure Python PNG solution. If pillow is not installed, then this becomes the default factory. - The pymaging image factory has been removed, but its factory shortcut and the actual PymagingImage factory class now just link to the PyPNGImage factory. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>