* [PATCH 0/6] Recipe upgrades for 2025-09-02
@ 2025-09-02 21:46 tim.orling
2025-09-02 21:46 ` [PATCH 1/6] python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0 tim.orling
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
Built and tested on qemux86-64
The following changes since commit 4ad510a63fd88b7907b2a1b8feceace9758397d0:
vte: upgrade 0.78.2 -> 0.80.3 (2025-09-01 23:07:06 +0100)
are available in the Git repository at:
https://git.yoctoproject.org/poky-contrib timo/upgrades-20250902
https://git.yoctoproject.org/poky-contrib/log/?h=timo/upgrades-20250902
Tim Orling (6):
python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0
python3-maturin: upgrade 1.9.3 -> 1.9.4
python3-cryptography{-vectors}: upgrade to 45.0.7
python3-typing-extensions: upgrade 4.14.1 -> 4.15.0
python3-requests: upgrade 2.32.4 -> 2.32.5
python3-rpds-py: upgrade 0.27.0 -> 0.27.1
meta/recipes-devtools/python/python3-cryptography-common.inc | 2 +-
meta/recipes-devtools/python/python3-cryptography-vectors.bb | 2 +-
meta/recipes-devtools/python/python3-cryptography.bb | 2 +-
.../{python3-maturin_1.9.3.bb => python3-maturin_1.9.4.bb} | 2 +-
.../{python3-requests_2.32.4.bb => python3-requests_2.32.5.bb} | 2 +-
.../{python3-rpds-py_0.27.0.bb => python3-rpds-py_0.27.1.bb} | 2 +-
...uptools-rust_1.11.1.bb => python3-setuptools-rust_1.12.0.bb} | 2 +-
...extensions_4.14.1.bb => python3-typing-extensions_4.15.0.bb} | 2 +-
8 files changed, 8 insertions(+), 8 deletions(-)
rename meta/recipes-devtools/python/{python3-maturin_1.9.3.bb => python3-maturin_1.9.4.bb} (92%)
rename meta/recipes-devtools/python/{python3-requests_2.32.4.bb => python3-requests_2.32.5.bb} (91%)
rename meta/recipes-devtools/python/{python3-rpds-py_0.27.0.bb => python3-rpds-py_0.27.1.bb} (85%)
rename meta/recipes-devtools/python/{python3-setuptools-rust_1.11.1.bb => python3-setuptools-rust_1.12.0.bb} (91%)
rename meta/recipes-devtools/python/{python3-typing-extensions_4.14.1.bb => python3-typing-extensions_4.15.0.bb} (91%)
--
2.43.0
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/6] python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
@ 2025-09-02 21:46 ` tim.orling
2025-09-02 21:46 ` [PATCH 2/6] python3-maturin: upgrade 1.9.3 -> 1.9.4 tim.orling
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
1.12.0 (2025-08-29)
* Set PYO3_BUILD_EXTENSION_MODULE environment variable when building
PyO3 extensions. #540
https://github.com/PyO3/setuptools-rust/blob/main/CHANGELOG.md#1120-2025-08-29
Reference:
https://github.com/PyO3/setuptools-rust/pull/540
Comparing Changes:
https://github.com/PyO3/setuptools-rust/compare/v1.11.1...v1.12.0
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
...uptools-rust_1.11.1.bb => python3-setuptools-rust_1.12.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-setuptools-rust_1.11.1.bb => python3-setuptools-rust_1.12.0.bb} (91%)
diff --git a/meta/recipes-devtools/python/python3-setuptools-rust_1.11.1.bb b/meta/recipes-devtools/python/python3-setuptools-rust_1.12.0.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-setuptools-rust_1.11.1.bb
rename to meta/recipes-devtools/python/python3-setuptools-rust_1.12.0.bb
index 417ded009ec..491f5127063 100644
--- a/meta/recipes-devtools/python/python3-setuptools-rust_1.11.1.bb
+++ b/meta/recipes-devtools/python/python3-setuptools-rust_1.12.0.bb
@@ -9,7 +9,7 @@ BUGTRACKER = "https://github.com/PyO3/setuptools-rust/issues"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=011cd92e702dd9e6b1a26157b6fd53f5"
-SRC_URI[sha256sum] = "7dabc4392252ced314b8050d63276e05fdc5d32398fc7d3cce1f6a6ac35b76c0"
+SRC_URI[sha256sum] = "d94a93f0c97751c17014565f07bdc324bee45d396cd1bba83d8e7af92b945f0c"
PYPI_PACKAGE = "setuptools_rust"
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/6] python3-maturin: upgrade 1.9.3 -> 1.9.4
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
2025-09-02 21:46 ` [PATCH 1/6] python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0 tim.orling
@ 2025-09-02 21:46 ` tim.orling
2025-09-02 21:46 ` [PATCH 3/6] python3-cryptography{-vectors}: upgrade to 45.0.7 tim.orling
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
1.9.4:
* Add a use-base-python option to pyproject.toml with the same behaviour
as MATURIN_PEP517_USE_BASE_PYTHON.
* Add builtin sysconfigs for GraalPy
* Fix calculation of platform tag for FreeBSD
https://github.com/PyO3/maturin/blob/main/Changelog.md#194
Comparing Changes:
https://github.com/PyO3/maturin/compare/v1.9.3...v1.9.4
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
.../{python3-maturin_1.9.3.bb => python3-maturin_1.9.4.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-maturin_1.9.3.bb => python3-maturin_1.9.4.bb} (92%)
diff --git a/meta/recipes-devtools/python/python3-maturin_1.9.3.bb b/meta/recipes-devtools/python/python3-maturin_1.9.4.bb
similarity index 92%
rename from meta/recipes-devtools/python/python3-maturin_1.9.3.bb
rename to meta/recipes-devtools/python/python3-maturin_1.9.4.bb
index eca474af663..f47c8061bbf 100644
--- a/meta/recipes-devtools/python/python3-maturin_1.9.3.bb
+++ b/meta/recipes-devtools/python/python3-maturin_1.9.4.bb
@@ -5,7 +5,7 @@ LICENSE = "MIT | Apache-2.0"
LIC_FILES_CHKSUM = "file://license-apache;md5=1836efb2eb779966696f473ee8540542 \
file://license-mit;md5=85fd3b67069cff784d98ebfc7d5c0797"
-SRC_URI[sha256sum] = "267ac8d0471d1ee2320b8b2ee36f400a32cd2492d7becbd0d976bd3503c2f69b"
+SRC_URI[sha256sum] = "235163a0c99bc6f380fb8786c04fd14dcf6cd622ff295ea3de525015e6ac40cf"
S = "${UNPACKDIR}/maturin-${PV}"
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/6] python3-cryptography{-vectors}: upgrade to 45.0.7
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
2025-09-02 21:46 ` [PATCH 1/6] python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0 tim.orling
2025-09-02 21:46 ` [PATCH 2/6] python3-maturin: upgrade 1.9.3 -> 1.9.4 tim.orling
@ 2025-09-02 21:46 ` tim.orling
2025-09-02 21:46 ` [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0 tim.orling
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
45.0.7 - 2025-09-01
* Added a function to support an upcoming pyOpenSSL release.
https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst#4507---2025-09-01
Comparing Changes:
https://github.com/pyca/cryptography/compare/45.0.6...45.0.7
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All ptests pass on qemux86-64 for core-image-ptest-python3-cryptography
meta/recipes-devtools/python/python3-cryptography-common.inc | 2 +-
meta/recipes-devtools/python/python3-cryptography-vectors.bb | 2 +-
meta/recipes-devtools/python/python3-cryptography.bb | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-devtools/python/python3-cryptography-common.inc b/meta/recipes-devtools/python/python3-cryptography-common.inc
index 874f60bf834..bcb907b6450 100644
--- a/meta/recipes-devtools/python/python3-cryptography-common.inc
+++ b/meta/recipes-devtools/python/python3-cryptography-common.inc
@@ -3,4 +3,4 @@
#
# Additionally AUH will detect that they share this .inc file and
# perform a lockstep upgrade for both.
-PV = "45.0.6"
+PV = "45.0.7"
diff --git a/meta/recipes-devtools/python/python3-cryptography-vectors.bb b/meta/recipes-devtools/python/python3-cryptography-vectors.bb
index b6b0e38f2e9..e845486a94e 100644
--- a/meta/recipes-devtools/python/python3-cryptography-vectors.bb
+++ b/meta/recipes-devtools/python/python3-cryptography-vectors.bb
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=8c3617db4fb6fae01f1d253ab91511e4 \
# NOTE: Make sure to keep this recipe at the same version as python3-cryptography
# Upgrade both recipes at the same time
require python3-cryptography-common.inc
-SRC_URI[sha256sum] = "068cee15423f3f1633ca04f12284385ac404c19366e7ccb3b680156c1aa9c573"
+SRC_URI[sha256sum] = "48e71fc4ac5f6298b2de53a99726ddc4a9e5ef0a94d921820109e7b90baf9f56"
PYPI_PACKAGE = "cryptography_vectors"
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
diff --git a/meta/recipes-devtools/python/python3-cryptography.bb b/meta/recipes-devtools/python/python3-cryptography.bb
index c4204712f23..55fdf13972e 100644
--- a/meta/recipes-devtools/python/python3-cryptography.bb
+++ b/meta/recipes-devtools/python/python3-cryptography.bb
@@ -11,7 +11,7 @@ LDSHARED += "-pthread"
# NOTE: Make sure to keep this recipe at the same version as python3-cryptography-vectors
# Upgrade both recipes at the same time
require python3-cryptography-common.inc
-SRC_URI[sha256sum] = "5c966c732cf6e4a276ce83b6e4c729edda2df6929083a952cc7da973c539c719"
+SRC_URI[sha256sum] = "4b1654dfc64ea479c242508eb8c724044f1e964a47d1d1cacc5132292d851971"
SRC_URI += "file://0001-pyproject.toml-remove-benchmark-disable-option.patch \
file://check-memfree.py \
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
` (2 preceding siblings ...)
2025-09-02 21:46 ` [PATCH 3/6] python3-cryptography{-vectors}: upgrade to 45.0.7 tim.orling
@ 2025-09-02 21:46 ` tim.orling
2025-09-02 22:06 ` Patchtest results for " patchtest
2025-09-02 21:46 ` [PATCH 5/6] python3-requests: upgrade 2.32.4 -> 2.32.5 tim.orling
2025-09-02 21:46 ` [PATCH 6/6] python3-rpds-py: upgrade 0.27.0 -> 0.27.1 tim.orling
5 siblings, 1 reply; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
Release 4.15.0 (August 25, 2025)
* No user-facing changes since 4.15.0rc1.
https://github.com/python/typing_extensions/blob/main/CHANGELOG.md#release-4150-august-25-2025
Release 4.15.0rc1 (August 18, 2025)
* Add the @typing_extensions.disjoint_base decorator, as specified in
PEP 800. Patch by Jelle Zijlstra.
* Add typing_extensions.type_repr, a backport of annotationlib.type_repr,
introduced in Python 3.14 (CPython PR #124551, originally by Jelle
Zijlstra). Patch by Semyon Moroz.
* Fix behavior of type params in typing_extensions.evaluate_forward_ref.
Backport of CPython PR #137227 by Jelle Zijlstra.
https://github.com/python/typing_extensions/blob/main/CHANGELOG.md#release-4150rc1-august-18-2025
Comparing Changes:
https://github.com/python/typing_extensions/compare/4.14.1...4.15.0
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
...extensions_4.14.1.bb => python3-typing-extensions_4.15.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-typing-extensions_4.14.1.bb => python3-typing-extensions_4.15.0.bb} (91%)
diff --git a/meta/recipes-devtools/python/python3-typing-extensions_4.14.1.bb b/meta/recipes-devtools/python/python3-typing-extensions_4.15.0.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-typing-extensions_4.14.1.bb
rename to meta/recipes-devtools/python/python3-typing-extensions_4.15.0.bb
index 32edb656db0..3e3ce33ca8d 100644
--- a/meta/recipes-devtools/python/python3-typing-extensions_4.14.1.bb
+++ b/meta/recipes-devtools/python/python3-typing-extensions_4.15.0.bb
@@ -16,7 +16,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=fcf6b249c2641540219a727f35d8d2c2"
PYPI_PACKAGE = "typing_extensions"
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
-SRC_URI[sha256sum] = "38b39f4aeeab64884ce9f74c94263ef78f3c22467c8724005483154c26648d36"
+SRC_URI[sha256sum] = "0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"
inherit pypi python_flit_core
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 5/6] python3-requests: upgrade 2.32.4 -> 2.32.5
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
` (3 preceding siblings ...)
2025-09-02 21:46 ` [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0 tim.orling
@ 2025-09-02 21:46 ` tim.orling
2025-09-02 21:46 ` [PATCH 6/6] python3-rpds-py: upgrade 0.27.0 -> 0.27.1 tim.orling
5 siblings, 0 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
2.32.5 (2025-08-18)
* Bugfixes
- The SSLContext caching feature originally introduced in 2.32.0 has
created a new class of issues in Requests that have had negative
impact across a number of use cases. The Requests team has decided
to revert this feature as long term maintenance of it is proving to
be unsustainable in its current iteration.
* Deprecations
- Added support for Python 3.14.
- Dropped support for Python 3.8 following its end of support.
https://requests.readthedocs.io/en/latest/community/updates/#release-history
Comparing Changes:
https://github.com/psf/requests/compare/v2.32.4...v2.32.5
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
.../{python3-requests_2.32.4.bb => python3-requests_2.32.5.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-requests_2.32.4.bb => python3-requests_2.32.5.bb} (91%)
diff --git a/meta/recipes-devtools/python/python3-requests_2.32.4.bb b/meta/recipes-devtools/python/python3-requests_2.32.5.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-requests_2.32.4.bb
rename to meta/recipes-devtools/python/python3-requests_2.32.5.bb
index 49d44298f64..43b63e32b1f 100644
--- a/meta/recipes-devtools/python/python3-requests_2.32.4.bb
+++ b/meta/recipes-devtools/python/python3-requests_2.32.5.bb
@@ -7,7 +7,7 @@ SRC_URI:append:class-nativesdk = " \
file://environment.d-python3-requests.sh \
"
-SRC_URI[sha256sum] = "27d0316682c8a29834d3264820024b62a36942083d52caf2f14c0591336d3422"
+SRC_URI[sha256sum] = "dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf"
inherit pypi python_setuptools_build_meta
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 6/6] python3-rpds-py: upgrade 0.27.0 -> 0.27.1
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
` (4 preceding siblings ...)
2025-09-02 21:46 ` [PATCH 5/6] python3-requests: upgrade 2.32.4 -> 2.32.5 tim.orling
@ 2025-09-02 21:46 ` tim.orling
5 siblings, 0 replies; 8+ messages in thread
From: tim.orling @ 2025-09-02 21:46 UTC (permalink / raw)
To: openembedded-core
From: Tim Orling <tim.orling@konsulko.com>
v0.27.1:
* Include attestations in published artifacts by @EpicWink in #160
Comparing Changes:
https://github.com/crate-py/rpds/compare/v0.27.0...v0.27.1
References:
https://github.com/crate-py/rpds/pull/160
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
.../{python3-rpds-py_0.27.0.bb => python3-rpds-py_0.27.1.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-rpds-py_0.27.0.bb => python3-rpds-py_0.27.1.bb} (85%)
diff --git a/meta/recipes-devtools/python/python3-rpds-py_0.27.0.bb b/meta/recipes-devtools/python/python3-rpds-py_0.27.1.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-rpds-py_0.27.0.bb
rename to meta/recipes-devtools/python/python3-rpds-py_0.27.1.bb
index ca2122f8df5..dfaffb65468 100644
--- a/meta/recipes-devtools/python/python3-rpds-py_0.27.0.bb
+++ b/meta/recipes-devtools/python/python3-rpds-py_0.27.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://pypi.org/project/rpds-py/"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7767fa537c4596c54141f32882c4a984"
-SRC_URI[sha256sum] = "8b23cf252f180cda89220b378d917180f29d313cd6a07b2431c0d3b776aae86f"
+SRC_URI[sha256sum] = "26a1c73171d10b7acccbded82bf6a586ab8203601e565badc74bbbf8bc5a10f8"
require ${BPN}-crates.inc
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Patchtest results for [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0
2025-09-02 21:46 ` [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0 tim.orling
@ 2025-09-02 22:06 ` patchtest
0 siblings, 0 replies; 8+ messages in thread
From: patchtest @ 2025-09-02 22:06 UTC (permalink / raw)
To: tim.orling; +Cc: openembedded-core
[-- Attachment #1: Type: text/plain, Size: 3056 bytes --]
Thank you for your submission. Patchtest identified one
or more issues with the patch. Please see the log below for
more information:
---
Testing patch /home/patchtest/share/mboxes/4-6-python3-typing-extensions-upgrade-4.14.1---4.15.0.patch
FAIL: test commit message user tags: Mbox includes one or more GitHub-style username tags. Ensure that any "@" symbols are stripped out of usernames (test_mbox.TestMbox.test_commit_message_user_tags)
PASS: pretest src uri left files (test_metadata.TestMetadata.pretest_src_uri_left_files)
PASS: test CVE check ignore (test_metadata.TestMetadata.test_cve_check_ignore)
PASS: test Signed-off-by presence (test_mbox.TestMbox.test_signed_off_by_presence)
PASS: test author valid (test_mbox.TestMbox.test_author_valid)
PASS: test commit message presence (test_mbox.TestMbox.test_commit_message_presence)
PASS: test lic files chksum modified not mentioned (test_metadata.TestMetadata.test_lic_files_chksum_modified_not_mentioned)
PASS: test max line length (test_metadata.TestMetadata.test_max_line_length)
PASS: test mbox format (test_mbox.TestMbox.test_mbox_format)
PASS: test non-AUH upgrade (test_mbox.TestMbox.test_non_auh_upgrade)
PASS: test shortlog format (test_mbox.TestMbox.test_shortlog_format)
PASS: test shortlog length (test_mbox.TestMbox.test_shortlog_length)
PASS: test src uri left files (test_metadata.TestMetadata.test_src_uri_left_files)
PASS: test target mailing list (test_mbox.TestMbox.test_target_mailing_list)
SKIP: pretest pylint: No python related patches, skipping test (test_python_pylint.PyLint.pretest_pylint)
SKIP: test CVE tag format: No new CVE patches introduced (test_patch.TestPatch.test_cve_tag_format)
SKIP: test Signed-off-by presence: No new CVE patches introduced (test_patch.TestPatch.test_signed_off_by_presence)
SKIP: test Upstream-Status presence: No new CVE patches introduced (test_patch.TestPatch.test_upstream_status_presence_format)
SKIP: test bugzilla entry format: No bug ID found (test_mbox.TestMbox.test_bugzilla_entry_format)
SKIP: test lic files chksum presence: No added recipes, skipping test (test_metadata.TestMetadata.test_lic_files_chksum_presence)
SKIP: test license presence: No added recipes, skipping test (test_metadata.TestMetadata.test_license_presence)
SKIP: test pylint: No python related patches, skipping test (test_python_pylint.PyLint.test_pylint)
SKIP: test series merge on head: Merge test is disabled for now (test_mbox.TestMbox.test_series_merge_on_head)
SKIP: test summary presence: No added recipes, skipping test (test_metadata.TestMetadata.test_summary_presence)
---
Please address the issues identified and
submit a new revision of the patch, or alternatively, reply to this
email with an explanation of why the patch should be accepted. If you
believe these results are due to an error in patchtest, please submit a
bug at https://bugzilla.yoctoproject.org/ (use the 'Patchtest' category
under 'Yocto Project Subprojects'). For more information on specific
failures, see: https://wiki.yoctoproject.org/wiki/Patchtest. Thank
you!
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-09-02 22:06 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-02 21:46 [PATCH 0/6] Recipe upgrades for 2025-09-02 tim.orling
2025-09-02 21:46 ` [PATCH 1/6] python3-setuptools-rust: upgrade 1.11.1 -> 1.12.0 tim.orling
2025-09-02 21:46 ` [PATCH 2/6] python3-maturin: upgrade 1.9.3 -> 1.9.4 tim.orling
2025-09-02 21:46 ` [PATCH 3/6] python3-cryptography{-vectors}: upgrade to 45.0.7 tim.orling
2025-09-02 21:46 ` [PATCH 4/6] python3-typing-extensions: upgrade 4.14.1 -> 4.15.0 tim.orling
2025-09-02 22:06 ` Patchtest results for " patchtest
2025-09-02 21:46 ` [PATCH 5/6] python3-requests: upgrade 2.32.4 -> 2.32.5 tim.orling
2025-09-02 21:46 ` [PATCH 6/6] python3-rpds-py: upgrade 0.27.0 -> 0.27.1 tim.orling
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).