Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package micropython-lib for openSUSE:Factory
checked in at 2026-02-20 17:41:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/micropython-lib (Old)
and /work/SRC/openSUSE:Factory/.micropython-lib.new.1977 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "micropython-lib"
Fri Feb 20 17:41:11 2026 rev:6 rq:1333934 version:1.27.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/micropython-lib/micropython-lib.changes
2025-10-28 14:46:59.896028582 +0100
+++
/work/SRC/openSUSE:Factory/.micropython-lib.new.1977/micropython-lib.changes
2026-02-20 17:43:09.168709777 +0100
@@ -1,0 +2,37 @@
+Thu Feb 19 12:33:16 UTC 2026 - Dominik Heidler <[email protected]>
+
+- Update to 1.27.0
+ * aioble/examples: Change variable name to _ADV_INTERVAL_US.
+ * all: Fix spelling and typos in comments and docstring.
+ * pyproject.toml: Add codespell configuration, CI and precommit.
+ * argparse: Add support for custom argument types.
+ * tarfile: Fix FileSection.skip to not rely on extended readinto args.
+ * tarfile: Add basic unittest for tarfile.TarFile.
+ * unix-ffi/socket: Remove ip add/drop membership from socket.
+ * iperf3: Fix server UDP mode.
+ * iperf3: Factor out data transfer logic to separate function.
+ * iperf3: Fix use as a CLI on the unix port of MicroPython.
+ * aiohttp: Correctly handle WebSocket message fragmentation.
+ * umqtt.simple: Add unsubscribe method.
+ * usb-device-hid: Use report protocol after report descriptor requested.
+ * usb-device-hid: Fix descriptor protocol config and set correct default.
+ * inspect: Support closures/generators/async-funcs in inspect.signature.
+ * lora: Fix import error detection for missing drivers.
+ * all: Correct various typos in comments and docs.
+ * pyproject.toml: Reorganize ruff lint settings for newer ruff.
+ * cbor2: Silence missing `__eq__` warning.
+ * CONTRIBUTING: Add guidelines for module documentation and versioning.
+ * all: Fix formatting errors in docstrings.
+ * requests: Update example for fetching using requests.
+ * copy: Fix typo in _deepcopy_dispatch.
+ * aioble: Fix typo in README in aioble.ADDR_PUBLIC.
+ * aioble/examples: Change variable name to _ADV_INTERVAL_US.
+ * mip: Optimize _CHUNK_SIZE const for code size.
+ * sdcard: Updating sector calculation for SDXC.
+ * datetime: Optimize for code size.
+ * datetime: Apply localtz patch to include naive date/time support.
+ * inspect: Implement a very basic signature function.
+ * usb-device-hid: Return True after submit_xfer.
+ * usb-device: Raise RuntimeError when DCD error occurs.
+
+-------------------------------------------------------------------
Old:
----
micropython-lib-1.26.1.tar.gz
New:
----
micropython-lib-1.27.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ micropython-lib.spec ++++++
--- /var/tmp/diff_new_pack.vziuzF/_old 2026-02-20 17:43:13.324884463 +0100
+++ /var/tmp/diff_new_pack.vziuzF/_new 2026-02-20 17:43:13.336884967 +0100
@@ -1,7 +1,7 @@
#
# spec file for package micropython-lib
#
-# Copyright (c) 2025 SUSE LLC and contributors
+# Copyright (c) 2026 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: micropython-lib
-Version: 1.26.1
+Version: 1.27.0
Release: 0
Summary: Core Python libraries ported to MicroPython
License: MIT AND Python-2.0
++++++ manifestfile.py ++++++
--- /var/tmp/diff_new_pack.vziuzF/_old 2026-02-20 17:43:13.396887489 +0100
+++ /var/tmp/diff_new_pack.vziuzF/_new 2026-02-20 17:43:13.412888162 +0100
@@ -25,7 +25,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-from __future__ import print_function
import contextlib
import os
import sys
++++++ micropython-lib-1.26.1.tar.gz -> micropython-lib-1.27.0.tar.gz ++++++
++++ 2761 lines of diff (skipped)
++++++ mpy_cross.py ++++++
--- /var/tmp/diff_new_pack.vziuzF/_old 2026-02-20 17:43:13.964911363 +0100
+++ /var/tmp/diff_new_pack.vziuzF/_new 2026-02-20 17:43:13.984912204 +0100
@@ -25,7 +25,6 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
-from __future__ import print_function
import os
import re
import stat
@@ -44,6 +43,7 @@
"NATIVE_ARCH_XTENSA": "xtensa",
"NATIVE_ARCH_XTENSAWIN": "xtensawin",
"NATIVE_ARCH_RV32IMC": "rv32imc",
+ "NATIVE_ARCH_RV64IMC": "rv64imc",
}
globals().update(NATIVE_ARCHS)