All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-astroid: upgrade 2.10.0 -> 2.11.0
@ 2022-03-16  8:36 Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-bitstruct: upgrade 8.12.1 -> 8.13.0 Wang Mingyu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-03-16  8:36 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog:
=========
Add new (optional) doc_node attribute to nodes.Module, nodes.ClassDef,
and nodes.FunctionDef.

Accessing the doc attribute of nodes.Module, nodes.ClassDef, and
nodes.FunctionDef has been deprecated in favour of the doc_node attribute.
Note: doc_node is an (optional) nodes.Const whereas doc was an (optional) str.

Passing the doc argument to the __init__ of nodes.Module, nodes.ClassDef,
and nodes.FunctionDef has been deprecated in favour of the postinit doc_node attribute.
Note: doc_node is an (optional) nodes.Const whereas doc was an (optional) str.

Replace custom cachedproperty with functools.cached_property and deprecate it
for Python 3.8+.

Closes #1410

Set end_lineno and end_col_offset attributes to None for all nodes
with PyPy 3.8. PyPy 3.8 assigns these attributes inconsistently which could lead
to unexpected errors. Overwriting them with None will cause a fallback
to the already supported way of PyPy 3.7.

Add missing shape parameter to numpy zeros_like, ones_like,
and full_like methods.

Closes PyCQA/pylint#5871

Only pin wrapt on the major version.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-astroid_2.10.0.bb => python3-astroid_2.11.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-astroid_2.10.0.bb => python3-astroid_2.11.0.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.10.0.bb b/meta-python/recipes-devtools/python/python3-astroid_2.11.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-astroid_2.10.0.bb
rename to meta-python/recipes-devtools/python/python3-astroid_2.11.0.bb
index fc23f17c6b..1a69be2f98 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_2.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.11.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
 
-SRC_URI[sha256sum] = "f616b9687a5f4afa673dfd2d684d2b6f38365c8ad7c6f27229dda1ede750c445"
+SRC_URI[sha256sum] = "d56f6a5239981567ceaa3413d4971936c7b4b0c796fcff90c24254dcf8b05b62"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-bitstruct: upgrade 8.12.1 -> 8.13.0
  2022-03-16  8:36 [oe] [meta-python] [PATCH] python3-astroid: upgrade 2.10.0 -> 2.11.0 Wang Mingyu
@ 2022-03-16  8:36 ` Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-cppy: upgrade 1.1.0 -> 1.2.0 Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-dnspython: upgrade 2.2.0 -> 2.2.1 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-03-16  8:36 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...{python3-bitstruct_8.12.1.bb => python3-bitstruct_8.13.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitstruct_8.12.1.bb => python3-bitstruct_8.13.0.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb b/meta-python/recipes-devtools/python/python3-bitstruct_8.13.0.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb
rename to meta-python/recipes-devtools/python/python3-bitstruct_8.13.0.bb
index f53f84f83e..954c9ab46c 100644
--- a/meta-python/recipes-devtools/python/python3-bitstruct_8.12.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitstruct_8.13.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/bitstruct"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = "45b2b932ce6681f5c6ce8cba39abdd423b579b0568c76fa48b1e09c88368ede7"
+SRC_URI[sha256sum] = "7b87d9e41ff552a8cae06ea2368c3772b6f3102bdab4b65e793be7590d69f03b"
 
 PYPI_PACKAGE = "bitstruct"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-cppy: upgrade 1.1.0 ->  1.2.0
  2022-03-16  8:36 [oe] [meta-python] [PATCH] python3-astroid: upgrade 2.10.0 -> 2.11.0 Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-bitstruct: upgrade 8.12.1 -> 8.13.0 Wang Mingyu
@ 2022-03-16  8:36 ` Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-dnspython: upgrade 2.2.0 -> 2.2.1 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-03-16  8:36 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

add dependence : python3-setuptools python3-distutils

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python/{python3-cppy_1.1.0.bb => python3-cppy_1.2.0.bb}  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cppy_1.1.0.bb => python3-cppy_1.2.0.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb b/meta-python/recipes-devtools/python/python3-cppy_1.2.0.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
rename to meta-python/recipes-devtools/python/python3-cppy_1.2.0.bb
index 79ddbed7c2..f86f571938 100644
--- a/meta-python/recipes-devtools/python/python3-cppy_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cppy_1.2.0.bb
@@ -3,8 +3,9 @@ HOMEPAGE = "https://cppy.readthedocs.io/en/latest/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0bfb3e39b13587f0028f17baf0e42371"
 
-SRC_URI[md5sum] = "2110891d75aa12551deebba1603428c6"
-SRC_URI[sha256sum] = "4eda6f1952054a270f32dc11df7c5e24b259a09fddf7bfaa5f33df9fb4a29642"
+SRC_URI[sha256sum] = "95e8862e4f826c3f2a6b7b658333b162f80cbe9f943aa0d0a7a6b2ef850aeffc"
+
+RDEPENDS:${PN} += "python3-setuptools python3-distutils"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-dnspython: upgrade 2.2.0 -> 2.2.1
  2022-03-16  8:36 [oe] [meta-python] [PATCH] python3-astroid: upgrade 2.10.0 -> 2.11.0 Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-bitstruct: upgrade 8.12.1 -> 8.13.0 Wang Mingyu
  2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-cppy: upgrade 1.1.0 -> 1.2.0 Wang Mingyu
@ 2022-03-16  8:36 ` Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2022-03-16  8:36 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-dnspython_2.2.0.bb => python3-dnspython_2.2.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-dnspython_2.2.0.bb => python3-dnspython_2.2.1.bb} (88%)

diff --git a/meta-python/recipes-devtools/python/python3-dnspython_2.2.0.bb b/meta-python/recipes-devtools/python/python3-dnspython_2.2.1.bb
similarity index 88%
rename from meta-python/recipes-devtools/python/python3-dnspython_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-dnspython_2.2.1.bb
index cf76a142b5..f067a2ce65 100644
--- a/meta-python/recipes-devtools/python/python3-dnspython_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-dnspython_2.2.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.dnspython.org/"
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5af50906b5929837f667dfe31052bd34"
 
-SRC_URI[sha256sum] = "e79351e032d0b606b98d38a4b0e6e2275b31a5b85c873e587cc11b73aca026d6"
+SRC_URI[sha256sum] = "0f7569a4a6ff151958b64304071d370daa3243d15941a7beedf0c9fe5105603e"
 
 inherit pypi poetry_core ptest
 
-- 
2.25.1



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

end of thread, other threads:[~2022-03-16  8:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-16  8:36 [oe] [meta-python] [PATCH] python3-astroid: upgrade 2.10.0 -> 2.11.0 Wang Mingyu
2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-bitstruct: upgrade 8.12.1 -> 8.13.0 Wang Mingyu
2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-cppy: upgrade 1.1.0 -> 1.2.0 Wang Mingyu
2022-03-16  8:36 ` [oe] [meta-python] [PATCH] python3-dnspython: upgrade 2.2.0 -> 2.2.1 Wang Mingyu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.