public inbox for openembedded-core@lists.openembedded.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0
@ 2026-02-03  9:13 Wang Mingyu
  2026-02-05 12:10 ` Mathieu Dubois-Briand
  2026-02-10 13:15 ` Ross Burton
  0 siblings, 2 replies; 4+ messages in thread
From: Wang Mingyu @ 2026-02-03  9:13 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Modify run-ptest.in to skip test_pylock.py.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-devtools/python/python3-packaging/run-ptest.in     | 2 +-
 .../{python3-packaging_25.0.bb => python3-packaging_26.0.bb}    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-devtools/python/{python3-packaging_25.0.bb => python3-packaging_26.0.bb} (93%)

diff --git a/meta/recipes-devtools/python/python3-packaging/run-ptest.in b/meta/recipes-devtools/python/python3-packaging/run-ptest.in
index 508538463b..3e43931c0f 100644
--- a/meta/recipes-devtools/python/python3-packaging/run-ptest.in
+++ b/meta/recipes-devtools/python/python3-packaging/run-ptest.in
@@ -1,2 +1,2 @@
 #!/bin/sh
-pytest --automake IGNOREDTESTS
+pytest --automake IGNOREDTESTS --ignore tests/test_pylock.py
diff --git a/meta/recipes-devtools/python/python3-packaging_25.0.bb b/meta/recipes-devtools/python/python3-packaging_26.0.bb
similarity index 93%
rename from meta/recipes-devtools/python/python3-packaging_25.0.bb
rename to meta/recipes-devtools/python/python3-packaging_26.0.bb
index 9cb5c68f58..cadf913db8 100644
--- a/meta/recipes-devtools/python/python3-packaging_25.0.bb
+++ b/meta/recipes-devtools/python/python3-packaging_26.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/pypa/packaging"
 LICENSE = "Apache-2.0 | BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=faadaedca9251a90b205c9167578ce91"
 
-SRC_URI[sha256sum] = "d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f"
+SRC_URI[sha256sum] = "00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4"
 
 SRC_URI += "file://run-ptest.in"
 
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0
  2026-02-03  9:13 [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0 Wang Mingyu
@ 2026-02-05 12:10 ` Mathieu Dubois-Briand
  2026-02-10 13:15 ` Ross Burton
  1 sibling, 0 replies; 4+ messages in thread
From: Mathieu Dubois-Briand @ 2026-02-05 12:10 UTC (permalink / raw)
  To: wangmy, openembedded-core

On Tue Feb 3, 2026 at 10:13 AM CET, wangmy via lists.openembedded.org wrote:
> From: Wang Mingyu <wangmy@fujitsu.com>
>
> Modify run-ptest.in to skip test_pylock.py.
>

Hi Wang,

Thanks for the new version.

This was reviewed during the today patch review session, and two
comments were made:
- First, the commit message should explain why this test is being
  disabled. I know this is linked with the tomli dependency, but please
  say so into the commit message.
- The second point is about the disabling itself. Did you had a look at
  possibilities to modify the test so it can still run in oe setup?

Thanks,
Mathieu

-- 
Mathieu Dubois-Briand, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0
  2026-02-03  9:13 [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0 Wang Mingyu
  2026-02-05 12:10 ` Mathieu Dubois-Briand
@ 2026-02-10 13:15 ` Ross Burton
  2026-02-10 14:49   ` Ross Burton
  1 sibling, 1 reply; 4+ messages in thread
From: Ross Burton @ 2026-02-10 13:15 UTC (permalink / raw)
  To: wangmy@fujitsu.com; +Cc: openembedded-core@lists.openembedded.org

On 3 Feb 2026, at 09:13, wangmy via lists.openembedded.org <wangmy=fujitsu.com@lists.openembedded.org> wrote:
> -pytest --automake IGNOREDTESTS
> +pytest --automake IGNOREDTESTS --ignore tests/test_pylock.py

Instead of adding more ignores to this file, can you add this to SKIPLIST in the recipe. Add a comment explaining why we’re skipping this test so we can enable it again if toml_w appears in core, and be sure to change the musl-specific override to an append.

Thanks,
Ross

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0
  2026-02-10 13:15 ` Ross Burton
@ 2026-02-10 14:49   ` Ross Burton
  0 siblings, 0 replies; 4+ messages in thread
From: Ross Burton @ 2026-02-10 14:49 UTC (permalink / raw)
  To: wangmy@fujitsu.com; +Cc: openembedded-core@lists.openembedded.org

On 10 Feb 2026, at 13:15, Ross Burton via lists.openembedded.org <ross.burton=arm.com@lists.openembedded.org> wrote:
> 
> On 3 Feb 2026, at 09:13, wangmy via lists.openembedded.org <wangmy=fujitsu.com@lists.openembedded.org> wrote:
>> -pytest --automake IGNOREDTESTS
>> +pytest --automake IGNOREDTESTS --ignore tests/test_pylock.py
> 
> Instead of adding more ignores to this file, can you add this to SKIPLIST in the recipe. Add a comment explaining why we’re skipping this test so we can enable it again if toml_w appears in core, and be sure to change the musl-specific override to an append.

In the interest of expediating this upgrade as without it we have failing tests, I just did this.

Ross

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-10 14:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-03  9:13 [OE-core] [PATCH v3] python3-packaging: upgrade 25.0 -> 26.0 Wang Mingyu
2026-02-05 12:10 ` Mathieu Dubois-Briand
2026-02-10 13:15 ` Ross Burton
2026-02-10 14:49   ` Ross Burton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox