summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
Commit message (Collapse)AuthorAgeFilesLines
* python3-mdit-py-plugins: upgrade 0.4.2 -> 0.5.0Wang Mingyu8 days1-1/+1
| | | | | | | | | | Changelog: ========== - Add plugin & tests to render subscripts - Drop Python 3.9 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-kiwisolver: upgrade 1.4.9 -> 1.5.0Wang Mingyu8 days1-2/+2
| | | | | | | | | | | | | | | License-Update: Copyright year updated to 2026 Changelog: ========== - add support for CMakeLists - implement more move constructor in the C++ code - add C++ tests - add support for GraalPy - add RiscV support Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-inline-snapshot: upgrade 0.32.4 -> 0.32.5Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-importlib-metadata: upgrade 8.7.1 -> 9.0.0Wang Mingyu8 days1-2/+2
| | | | | | | License-Update: Copyright year updated to 2026 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-imageio: upgrade 2.37.2 -> 2.37.3Wang Mingyu8 days1-2/+2
| | | | | | | License-Update: Copyright year updated to 2026 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-identify: upgrade 2.6.17 -> 2.6.18Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-icu: upgrade 2.16.1 -> 2.16.2Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-google-auth-oauthlib: upgrade 1.2.3 -> 1.3.0Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-filelock: upgrade 3.25.0 -> 3.25.2Wang Mingyu8 days1-1/+1
| | | | | | | | | | | Changelog: ========== - fix(unix): suppress EIO on close in Docker bind mounts - docs(logo): add branded project logo - fix(win): restore best-effort lock file cleanup on release Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-faker: upgrade 40.8.0 -> 40.11.0Wang Mingyu8 days1-1/+1
| | | | | | | | | | | | Changelog: ============= - Add major Swiss banks to de_CH bank provider. - Fix: mixed-gender names in es_MX locale. - Fix pt_PT postalcode format in address provider. - Fix mutable default providers. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-coverage: upgrade 7.13.4 -> 7.13.5Wang Mingyu8 days1-1/+1
| | | | | | | | | | | | | | Changelog: ========== - Fix: issue 2138 describes a memory leak that happened when repeatedly using the Coverage API with in-memory data. This is now fixed. - Fix: the markdown-formatted coverage report didn't fully escape special characters in file paths (issue 2141). This would be very unlikely to cause a problem, but now it's done properly - Fix: the C extension wouldn't build on VS2019, but now it does Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-cbor2: upgrade 5.8.0 -> 5.9.0Wang Mingyu8 days1-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========= - Added the max_depth decoder parameter to limit the maximum allowed nesting level of containers, with a default value of 400 levels (CVE-2026-26209) - Changed the default read_size from 4096 to 1 for backwards compatibility. The buffered reads introduced in 5.8.0 could cause issues when code needs to access the stream position after decoding. Users can opt-in to faster decoding by passing read_size=4096 when they don't need to access the stream directly after decoding. Added a direct read path for read_size=1 to avoid buffer management overhead. - Fixed C encoder not respecting string referencing when encoding string-type datetimes (tag 0) - Fixed a missed check for an exception in the C implementation of CBOREncoder.encode_shared() - Fixed two reference/memory leaks in the C extension's long string decoder - Fixed C decoder ignoring the str_errors setting when decoding strings, and improved string decoding performance by using stack allocation for small strings and eliminating unnecessary conditionals. Benchmarks show 9-17% faster deserialization. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-bleak: upgrade 2.1.1 -> 3.0.0Wang Mingyu8 days1-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ - Added adapter attribute to bleak.args.bluez.BlueZClientArgs and bleak.args.bluez.BlueZScannerArgs. - Added bluez keyword argument to BleakClient. - Added new bleak.args.bluez.BlueZClientArgs class. - Added bleak.exc.BleakGATTProtocolError and bleak.exc.BleakGATTProtocolErrorCode classes. - Added type hints and documentation for use_cached kwarg for read_gatt_char() and read_gatt_descriptor() methods in BleakClient. - Added support for "use_cached" kwarg to read_gatt_char() and read_gatt_descriptor() methods in BlueZ backend. - Deprecated adapter keyword argument in BleakScanner and BleakClient. - Changed GATT read and write methods to raise BleakGATTProtocolError when a GATT protocol error occurs. - Changed start/stop scanning on CoreBluetooth so that the isScanning property is not checked anymore. - Changed BleakClient.write_gatt_descriptor() to raise ValueError when attempting to write to the descriptor 0x2902 (Client Characteristic Configuration Descriptor, CCCD). Use start_notify() and stop_notify() instead. - Fixed occasional EOFError when disconnecting in BlueZ backend. - Fixed a potential deadlock when turning off Bluetooth manually while starting scanning on CoreBluetooth. - Fixed reading descriptors 0x2900, 0x2902 and 0x2903 on CoreBluetooth backend. - Fixed cyclic references problem in CoreBluetooth backend causing memory leaks. - Fixed typehint for BleakScanner.__aexit__(). - Removed undocumented/deprecated device keyword argument from BleakScannerBlueZDBus and BleakClientBlueZDBus. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-bitstring: upgrade 4.3.1 -> 4.4.0Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-astroid: upgrade 4.1.1 -> 4.1.2Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-apiflask: upgrade 3.0.0 -> 3.1.0Wang Mingyu8 days1-1/+1
| | | | | | | | | | | | Changelog: =========== - Support pagination with Pydantic - Fix @app.output(Schema(many=True)) is not array type in OpenAPI doc - Support upload file model - Fix type checking for view function return types Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-aenum: upgrade 3.1.16 -> 3.1.17Wang Mingyu8 days1-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-scrypt: upgrade 0.8.27 -> 0.9.4Gyorgy Sarvari11 days2-9/+9
| | | | | | | | | | License-Update: Copyright year bump Shortlog: https://github.com/holgern/py-scrypt/compare/v0.8.27...v0.9.4 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-txdbus: add missing RDEPENDSGyorgy Sarvari11 days1-1/+1
| | | | | | | | | | | | | | | | | This module depends on python3-six, otherwise it errors out: >>> from txdbus.interface import DBusInterface, Method, Signal Traceback (most recent call last): File "<python-input-1>", line 1, in <module> from txdbus.interface import DBusInterface, Method, Signal File "/usr/lib/python3.14/site-packages/txdbus/interface.py", line 8, in <module> import six ModuleNotFoundError: No module named 'six' Add the missing dependency. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-zopeinterface: upgrade 7.1.1 -> 8.2Gyorgy Sarvari11 days2-28/+3
| | | | | | | | | | | | | | | Drop obsolete patch. An important change is that this version supports Python 3.14. License-Update: switch to license file instead of PKG-INFO file. The license itself hasn't changed. Changelog: https://github.com/zopefoundation/zope.interface/blob/master/CHANGES.rst Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-black: upgrade 26.3.0 -> 26.3.1Ankur Tyagi12 days1-1/+1
| | | | | | | | | | Includes fix for CVE-2026-32274. Changelog: https://github.com/psf/black/releases/tag/26.3.1 Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-protobuf: upgrade 6.33.5 -> 6.33.6Peter Marko12 days1-1/+1
| | | | | | | | | | Release information [1] does not list python changes, but we should match protobuf (C++) recipe version. [1] https://github.com/protocolbuffers/protobuf/releases/tag/v33.6 Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-charset-normalizer: Upgrade to 3.4.6Khem Raj2026-03-202-2/+27
| | | | | | Fix build with setuptools > 82.0.0 as well Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
* python3-lief: drop obsolete CVE_STATUSGyorgy Sarvari2026-03-201-1/+0
| | | | | | | The CVE is now tracked with correct version info by NVD. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyjwt: drop obsolete CVE_STATUSGyorgy Sarvari2026-03-201-1/+0
| | | | | | | This CVE is now tracked with the correct version info by NVD. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xstatic-font-awesome: Upgrade to 6.2.1.2Khem Raj2026-03-201-4/+4
| | | | | | License-Update: Updated to use LICENSE.txt for anchoring the check Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pychromecast: upgrade 14.0.9 -> 14.0.10Gyorgy Sarvari2026-03-203-50/+1
| | | | | | | | | | | | | | | | | | Beside the below changelog, it also allows compiling with the latest Setuptools. Drop patches which became obsolete. Changes: - Ensure cec info is none if not supported - Add some fast pre-commit checks - Switch to ruff for checks and formatting - add D24f-J09 to const.py - Update const.py to include Lenovo Smart Display 10 - Avoid logging graceful disconnect as error - Fix datetime deprecation Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-redis: upgrade 5.3.1->7.3.0Jiaying Song2026-03-181-2/+2
| | | | | | | | | | Switch build system from setuptools3 to python_hatchling Changelog: https://github.com/redis/redis-py/releases Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-paramiko: upgrade 3.5.1->4.0.0Jiaying Song2026-03-181-2/+2
| | | | | | | | Changelog: https://www.paramiko.org/changelog.html Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-m2crypto: fix do_compile error using clangWang Mingyu2026-03-182-1/+51
| | | | | | | | | | | | | | | | | | | erre message: | INFO:mkpath:creating build/temp.linux-aarch64-cpython-314/src/SWIG | INFO:spawn:aarch64-yoe-linux-clang -mcpu=cortex-a57+crc --dyld-prefix=/usr -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security -fstack-protector-strong -O2 -D_FORTIFY_SOURCE=2 -Wformat -Wformat-security -Werror=format-security --sysroot=/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/recipe-sysroot -O2 -g -ffile-prefix-map=/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/sources/m2crypto-0.47.0=/usr/src/debug/python3-m2crypto/0.47.0 -ffile-prefix-map=/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/sources/m2crypto-0.47.0=/usr/src/debug/python3-m2crypto/0.47.0 -ffile-prefix-map=/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/recipe-sysroot= -ffile-prefix-map=/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/recipe-sysroot-native= -pipe -fPIC -I/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/recipe-sysroot/usr/include/python3.14 -I/srv/build/yoe/build/tmp/work/cortexa57-yoe-linux/python3-m2crypto/0.47.0/sources/m2crypto-0.47.0/src/SWIG -c src/SWIG/_m2crypto_wrap.c -o build/temp.linux-aarch64-cpython-314/src/SWIG/_m2crypto_wrap.o -DTHREADING -Wno-deprecated-declarations | src/SWIG/_m2crypto_wrap.c:4455:1: error: unknown type name 'PRAGMA_IGNORE_UNUSED_LABEL' | 4455 | PRAGMA_IGNORE_UNUSED_LABEL | | ^ | src/SWIG/_m2crypto_wrap.c:4456:30: error: expected ';' after top level declarator | 4456 | PRAGMA_WARN_STRICT_PROTOTYPES | | ^ | | ; | 2 errors generated. Add patch 0001-fix-swig-avoid-clang-GNUC-pragma-block-before-_lib.h.patch to avoid clang GNUC pragma block before _lib.h Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python-pyjwt: upgrade 2.11.0 -> 2.12.1Gyorgy Sarvari2026-03-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | | Contains fix for CVE-2026-32597. Since NVD tracks this CVE without version info, mark the CVE explicitly patched. Changes: 2.12.1: Add typing_extensions dependency for Python < 3.11 2.12.0: chore(docs): fix docs build Annotate PyJWKSet.keys for pyright fix: close HTTPError to prevent ResourceWarning on Python 3.14 chore: remove superfluous constants chore(tests): enable mypy Bump actions/download-artifact from 7 to 8 fix: do not store reference to algorithms dict on PyJWK Use PyJWK algorithm when encoding without explicit algorithm Validate the crit (Critical) Header Parameter defined in RFC 7515 ยง4.1.11. (CVE-2026-32597) Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tornado: upgrade 6.5.4 -> 6.5.5Ankur Tyagi2026-03-181-1/+1
| | | | | | | | | Security fixes including CVE-2026-31958 https://www.tornadoweb.org/en/stable/releases/v6.5.5.html Signed-off-by: Ankur Tyagi <ankur.tyagi85@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-grpcio: upgrade 1.76.0 -> 1.78.0Andrej Kozemcak2026-03-181-2/+8
| | | | | | | | | | | | | | | | | | | Change build tools from setuptools3 to python_setuptools_build_meta Add cython depends and change cython requirement from cython==3.1.1 to cython>=3.1.1. Currently we use cython version 3.2.4 Changelog: https://github.com/grpc/grpc/releases/tag/v1.78.0 Changes for python: - aio: fix race condition causing asyncio.run() to hang forever during the shutdown process. - Migrate to pyproject.toml build system from setup.py builds. - Log error details when ExecuteBatchError occurs (at DEBUG level). - Update setuptools min version to 77.0.1. Signed-off-by: Andrej Kozemcak <andrej.kozemcak@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-ninja: upgrade 1.11.1.1 -> 1.13.0Jiaying Song2026-03-184-80/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: https://github.com/scikit-build/ninja-python-distributions/releases Upstream commit [1] switched build system from scikit-build to scikit-build-core, which changed pyproject.toml structure and rewrote __init__.py. Update patches accordingly: - no-scikit-build.patch: rewrite for new pyproject.toml structure, replace scikit-build-core with setuptools, and remove 'readme' from dynamic fields as setuptools cannot handle the fancy-pypi-readme plugin. - run-ninja-from-path.patch: drop. Old version imported skbuild modules in __init__.py which caused ImportError in OE since scikit-build is not installed. New version replaced these imports with stdlib sysconfig, so the patch is no longer needed. - CMakeLists.txt: drop. This was a stub file added to prevent scikit-build from failing when it could not find CMakeLists.txt. Since we now use setuptools which does not require it, the file can be removed. [1] https://github.com/scikit-build/ninja-python-distributions/commit/f3b4a786be Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-gpiod: update to v2.4.1Bartosz Golaszewski2026-03-181-5/+3
| | | | | | | | | | | | Bug-fix release addressing a memory leak and a couple minor issues. We now ship the license file with the dist tarball so update the recipe to take this into account. While at it: trim the LICENSE value to only include LGPL-v2.1-or-later as the other two licenses cover tests and text files. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cassandra-driver: upgrade 3.29.2 -> 3.29.3Gyorgy Sarvari2026-03-182-2/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, add a patch to be able to build with Setuptools 82. This patch is oe-specific, but upstream has already merged[1] a patch that should make it compatible with the latest Setuptools. It however seems to require multiple patches to apply clean. The patch in this change is expected to be a short term workaround until the next version is released. Changelog: Features - Upgraded cython to 3.0.x - Add support for DSE 6.9.x and HCD releases to CI - Add execute_concurrent_async and expose execute_concurrent_* in Session Bug Fixes - Update geomet to align with requirements.txt - Connection failure to SNI endpoint when first host is unavailable - Maintain compatibility with CPython 3.13 Others - Remove duplicated condition in primary key check - Remove Python 3.8 which reached EOL on Oct 2024, update cryptography lib to 42 - Remove obsolete urllib2 from ez_setup.py - Remove stale dependency on sure - Removed 2.7 Cpython defines [1]: https://github.com/apache/cassandra-python-driver/pull/1268 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xstatic: add patch to build w/ Setuptools 82Gyorgy Sarvari2026-03-182-0/+33
| | | | | | | | | | | | | | | Setuptools 82 dropped pkg_resources module. It is not used by the setup script, nevertheless, it is imported, and this missing module fails compilation. This patch removes this import. Upstream started to work on refactoring their setup scripts, so this patch is not appropriate to them - once/if they release, most likely this patch can be dropped. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-httptools: allow building with latest setuptoolsGyorgy Sarvari2026-03-182-0/+24
| | | | | | | | | | By default this recipe requires Setuptools with strictly version 80.9.0. oe-core has updated Setuptools to 82.0, and this recipe failed to build. This patch relaxes the Setuptools version requirements. Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-html5lib: fix build with setuptools 82Peter Marko2026-03-182-0/+45
| | | | | Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wrapt: upgrade 2.1.1 -> 2.1.2Wang Mingyu2026-03-171-1/+1
| | | | | | | | | | | | | | | | Changelog: =========== - Building of Python wheels for riscv64 Linux platform had been accidentally removed from the build configuration. This has now been added back in. - When a weak function proxy was created for a bound method and the instance it was bound to was garbage collected, calling the proxy would silently call the function as unbound instead of raising a ReferenceError. - When deleting an attribute named __annotations__ on an object proxy, the attribute was only being deleted from the proxy and not also from the wrapped object. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-whitenoise: upgrade 6.11.0 -> 6.12.0Wang Mingyu2026-03-171-1/+1
| | | | | | | | | | Changelog: ======== - Drop Python 3.9 support. - Fix potential unauthorised file access vulnerability in "autorefesh" mode. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-wheezy-template: upgrade 3.2.4 -> 3.2.5Wang Mingyu2026-03-171-1/+1
| | | | | | | | Changelog: Added wheezy.html 3.2.1 as a development dependency. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tqdm: upgrade 4.67.2 -> 4.67.3Wang Mingyu2026-03-171-1/+1
| | | | | | | | Changelog: fix py3.7 dependencies Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.36.1 -> 4.49.0Wang Mingyu2026-03-171-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tabulate: upgrade 0.9.0 -> 0.10.0Wang Mingyu2026-03-171-1/+1
| | | | | | | | | | | | | | | 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>
* python3-sqlalchemy: upgrade 2.0.46 -> 2.0.48Wang Mingyu2026-03-171-1/+1
| | | | | | | | Changelog: https://docs.sqlalchemy.org/en/21/changelog/changelog_20.html#change-2.0.48 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-snagboot: upgrade 2.5 -> 2.6Wang Mingyu2026-03-171-1/+1
| | | | | | | | | | | | | | | | | | | | treewide: Migrate documentation to readthedocs Emit more specific error messages for USB permission-based access issues Add unit tests snagflash: Support compressed input files, e.g. *.wic.bz2 Refactor fastboot-uboot logic to factor out common code and improve logging Automatically detect when oem_run isn't supported by U-Boot, and fallback to ucmd snagrecover: Support Renesas RZ/N1 platforms Support SoC model aliases, and add i.MX8MP alias Handle relative path prefixes with the -F syntax Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-scikit-build-core: upgrade 0.11.6 -> 0.12.2Wang Mingyu2026-03-171-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-robotframework: upgrade 7.3.2 -> 7.4.2Wang Mingyu2026-03-171-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-regex: upgrade 2026.2.19 -> 2026.2.28Wang Mingyu2026-03-171-1/+1
| | | | | | | | | | | Changelog: ========== - Replaced atomic operations with mutex on pattern object for free-threaded Python. - PR #598: Fix race condition in storage caching with atomic operations. - Replaced use of PyUnicode_GET_LENGTH with PyUnicode_GetLength. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>