openembedded-core.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/3] python3-click: upgrade 8.4.2 -> 8.5.0
@ 2026-08-27  7:20 yash.shinde.oss.dev
  2026-08-27  7:20 ` [PATCH 2/3] python3-scons: upgrade 4.11.0 -> 4.11.1 yash.shinde.oss.dev
  2026-08-27  7:20 ` [PATCH 3/3] python3-websockets: upgrade 17.0.1 -> 17.1 yash.shinde.oss.dev
  0 siblings, 2 replies; 3+ messages in thread
From: yash.shinde.oss.dev @ 2026-08-27  7:20 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yash Shinde

From: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>

https://github.com/pallets/click/releases/tag/8.5.0
https://pypi.org/project/click/8.5.0/

- Drop merged pytest-fix.patch.
https://github.com/pallets/click/commit/30749b45c50f4811a3487fc9d11da2b7afc6007f

Signed-off-by: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>
---
 .../python/python3-click/pytest-fix.patch     | 36 -------------------
 ...-click_8.4.2.bb => python3-click_8.5.0.bb} |  3 +-
 2 files changed, 1 insertion(+), 38 deletions(-)
 delete mode 100644 meta/recipes-devtools/python/python3-click/pytest-fix.patch
 rename meta/recipes-devtools/python/{python3-click_8.4.2.bb => python3-click_8.5.0.bb} (88%)

diff --git a/meta/recipes-devtools/python/python3-click/pytest-fix.patch b/meta/recipes-devtools/python/python3-click/pytest-fix.patch
deleted file mode 100644
index abfa07120a..0000000000
--- a/meta/recipes-devtools/python/python3-click/pytest-fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 1cdbe9829973a30037075d613b5a1d5a42e260d5 Mon Sep 17 00:00:00 2001
-From: Richard Purdie <richard.purdie@linuxfoundation.org>
-Date: Mon, 15 Jun 2026 11:37:28 +0100
-Subject: [PATCH] Fix an error with newer versions of pytest (9.1.0) by
- converting the generator into a tuple:
-
-E   pytest.PytestRemovedIn10Warning: Passing a non-Collection iterable to parametrize is deprecated.
-E   Test: tests/test_basic.py::test_boolean_conversion, argvalues type: chain
-E   Please convert to a list or tuple.
-E   See https://docs.pytest.org/en/stable/deprecations.html#parametrize-iterators
-ERROR: tests/test_basic.py:tests/test_basic.py
-
-Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-
-Upstream-Status: Submitted [https://github.com/pallets/click/pull/3597]
----
- tests/test_basic.py | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/tests/test_basic.py b/tests/test_basic.py
-index 34d22e7..8076dd8 100644
---- a/tests/test_basic.py
-+++ b/tests/test_basic.py
-@@ -258,10 +258,10 @@ def test_boolean_flag(runner, default, args, expect):
- 
- @pytest.mark.parametrize(
-     ("value", "expect"),
--    chain(
-+    tuple(chain(
-         ((x, "True") for x in ("1", "true", "t", "yes", "y", "on")),
-         ((x, "False") for x in ("0", "false", "f", "no", "n", "off")),
--    ),
-+    )),
- )
- def test_boolean_conversion(runner, value, expect):
-     @click.command()
diff --git a/meta/recipes-devtools/python/python3-click_8.4.2.bb b/meta/recipes-devtools/python/python3-click_8.5.0.bb
similarity index 88%
rename from meta/recipes-devtools/python/python3-click_8.4.2.bb
rename to meta/recipes-devtools/python/python3-click_8.5.0.bb
index 0578a0421e..8884467692 100644
--- a/meta/recipes-devtools/python/python3-click_8.4.2.bb
+++ b/meta/recipes-devtools/python/python3-click_8.5.0.bb
@@ -8,8 +8,7 @@ HOMEPAGE = "http://click.pocoo.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=1fa98232fd645608937a0fdc82e999b8"
 
-SRC_URI += "file://pytest-fix.patch"
-SRC_URI[sha256sum] = "9a6cea6e60b17ebe0a44c5cc636d94f09bd66142c1cd7d8b4cd731c4917a15f6"
+SRC_URI[sha256sum] = "ba0d2089de75ea0310e2dde03160e6ca10009947fb95a182f9b54021bb272e34"
 
 inherit pypi python_flit_core ptest-python-pytest
 


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

* [PATCH 2/3] python3-scons: upgrade 4.11.0 -> 4.11.1
  2026-08-27  7:20 [PATCH 1/3] python3-click: upgrade 8.4.2 -> 8.5.0 yash.shinde.oss.dev
@ 2026-08-27  7:20 ` yash.shinde.oss.dev
  2026-08-27  7:20 ` [PATCH 3/3] python3-websockets: upgrade 17.0.1 -> 17.1 yash.shinde.oss.dev
  1 sibling, 0 replies; 3+ messages in thread
From: yash.shinde.oss.dev @ 2026-08-27  7:20 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yash Shinde

From: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>

https://scons.org/scons-4111-is-available.html
https://github.com/SCons/scons/compare/4.11.0...4.11.1

Signed-off-by: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>
---
 .../python/{python3-scons_4.11.0.bb => python3-scons_4.11.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-scons_4.11.0.bb => python3-scons_4.11.1.bb} (88%)

diff --git a/meta/recipes-devtools/python/python3-scons_4.11.0.bb b/meta/recipes-devtools/python/python3-scons_4.11.1.bb
similarity index 88%
rename from meta/recipes-devtools/python/python3-scons_4.11.0.bb
rename to meta/recipes-devtools/python/python3-scons_4.11.1.bb
index 585cad271c..c1c56856c6 100644
--- a/meta/recipes-devtools/python/python3-scons_4.11.0.bb
+++ b/meta/recipes-devtools/python/python3-scons_4.11.1.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d903b0b8027f461402bac9b5169b36f7"
 
-SRC_URI[sha256sum] = "5ba48f9e2eb6b9178cabdc9893792418e6970c84f43f4b027e4468e20616a89c"
+SRC_URI[sha256sum] = "4210d1a80a62e986029208117991b6347ccaaaab37b67463a3ff31ee065dc487"
 
 inherit pypi python_setuptools_build_meta
 


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

* [PATCH 3/3] python3-websockets: upgrade 17.0.1 -> 17.1
  2026-08-27  7:20 [PATCH 1/3] python3-click: upgrade 8.4.2 -> 8.5.0 yash.shinde.oss.dev
  2026-08-27  7:20 ` [PATCH 2/3] python3-scons: upgrade 4.11.0 -> 4.11.1 yash.shinde.oss.dev
@ 2026-08-27  7:20 ` yash.shinde.oss.dev
  1 sibling, 0 replies; 3+ messages in thread
From: yash.shinde.oss.dev @ 2026-08-27  7:20 UTC (permalink / raw)
  To: openembedded-core; +Cc: Yash Shinde

From: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>

https://websockets.readthedocs.io/en/stable/project/changelog.html
https://github.com/python-websockets/websockets/compare/17.0.1...17.1

- New features
Added support for reconnecting automatically by using reconnect()
as an iterator to the threading implementation.

connect() now follows redirects in the threading implementation.

connect() can connect to another host and port than those specified
in the URI in the threading implementation.

- Improvements
Connections are now garbage collected immediately once closed.

unix_connect() and unix_serve() now accept path-like objects,
such as pathlib.Path, in the path argument.

Signed-off-by: Yash Shinde <Yash.Shinde.oss.dev@gmail.com>
---
 ...{python3-websockets_17.0.1.bb => python3-websockets_17.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-devtools/python/{python3-websockets_17.0.1.bb => python3-websockets_17.1.bb} (79%)

diff --git a/meta/recipes-devtools/python/python3-websockets_17.0.1.bb b/meta/recipes-devtools/python/python3-websockets_17.1.bb
similarity index 79%
rename from meta/recipes-devtools/python/python3-websockets_17.0.1.bb
rename to meta/recipes-devtools/python/python3-websockets_17.1.bb
index 6733cfd0f9..b5ee3ec661 100644
--- a/meta/recipes-devtools/python/python3-websockets_17.0.1.bb
+++ b/meta/recipes-devtools/python/python3-websockets_17.1.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=51924a6af4495b8cfaee1b1da869b6f4"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "5baa9bc0dfbae8c507e51c8cf1b6d4628086f7a87bbd3a9952bd5f035451f1cc"
+SRC_URI[sha256sum] = "acfea4c20bf54384883ea33b1240fc1db4f52e190823a4e2b334bc3e8bfca96a"
 
 BBCLASSEXTEND = "native nativesdk"
 


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

end of thread, other threads:[~2026-08-27  7:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-27  7:20 [PATCH 1/3] python3-click: upgrade 8.4.2 -> 8.5.0 yash.shinde.oss.dev
2026-08-27  7:20 ` [PATCH 2/3] python3-scons: upgrade 4.11.0 -> 4.11.1 yash.shinde.oss.dev
2026-08-27  7:20 ` [PATCH 3/3] python3-websockets: upgrade 17.0.1 -> 17.1 yash.shinde.oss.dev

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).