All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-mypy: upgrade 0.960 -> 0.961
@ 2022-06-17  1:33 XU Huan
  2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1 XU Huan
  2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-smbus2: upgrade 0.4.1 -> 0.4.2 XU Huan
  0 siblings, 2 replies; 4+ messages in thread
From: XU Huan @ 2022-06-17  1:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../python/{python3-mypy_0.960.bb => python3-mypy_0.961.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-mypy_0.960.bb => python3-mypy_0.961.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-mypy_0.960.bb b/meta-python/recipes-devtools/python/python3-mypy_0.961.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-mypy_0.960.bb
rename to meta-python/recipes-devtools/python/python3-mypy_0.961.bb
index 5d99b6468..02f7cce4c 100644
--- a/meta-python/recipes-devtools/python/python3-mypy_0.960.bb
+++ b/meta-python/recipes-devtools/python/python3-mypy_0.961.bb
@@ -7,7 +7,7 @@ PYPI_PACKAGE = "mypy"
 
 inherit pypi python_setuptools_build_meta
 
-SRC_URI[sha256sum] = "d4fccf04c1acf750babd74252e0f2db6bd2ac3aa8fe960797d9f3ef41cf2bfd4"
+SRC_URI[sha256sum] = "f730d56cb924d371c26b8eaddeea3cc07d78ff51c521c6d04899ac6904b75492"
 
 BBCLASSEXTEND = "native"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1
  2022-06-17  1:33 [oe] [meta-python] [PATCH] python3-mypy: upgrade 0.960 -> 0.961 XU Huan
@ 2022-06-17  1:33 ` XU Huan
  2022-06-20  3:54   ` akuster808
  2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-smbus2: upgrade 0.4.1 -> 0.4.2 XU Huan
  1 sibling, 1 reply; 4+ messages in thread
From: XU Huan @ 2022-06-17  1:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

Changelog:
=========
Avoid reporting unnecessary-dict-index-lookup or unnecessary-list-index-lookup
when the index lookup is part of a destructuring assignment.

Fixed parsing of unrelated options in tox.ini.

Fixed a crash when linting __new__() methods that return a call expression.

Don't crash if we can't find the user's home directory.

Fixed false positives for unused-import when aliasing typing e.g. as t
and guarding imports under t.TYPE_CHECKING.

Fixed a false positive regression in 2.13 for used-before-assignment where it is safe to rely
on a name defined only in an except block because the else block returned.

Fixed the use of abbreviations for some special options on the command line.

Fix a crash in the optional pylint.extensions.private_import extension.


bad-option-value (E0012) is now a warning unknown-option-value (W0012). Deleted messages that do not exist
anymore in pylint now raise useless-option-value (R0022) instead of bad-option-value. This allows to
distinguish between genuine typos and configuration that could be cleaned up. Existing message disables for
bad-option-value will still work on both new messages.

Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../{python3-pylint_2.13.9.bb => python3-pylint_2.14.1.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pylint_2.13.9.bb => python3-pylint_2.14.1.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
rename to meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
index 1946a8923..d4d2d2c8a 100644
--- a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
+++ b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE= "http://www.pylint.org/"
 LICENSE = "GPL-2.0-only"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
 
-SRC_URI[sha256sum] = "095567c96e19e6f57b5b907e67d265ff535e588fe26b12b5ebe1fc5645b2c731"
+SRC_URI[sha256sum] = "549261e0762c3466cc001024c4419c08252cb8c8d40f5c2c6966fea690e7fe2a"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-smbus2: upgrade 0.4.1 -> 0.4.2
  2022-06-17  1:33 [oe] [meta-python] [PATCH] python3-mypy: upgrade 0.960 -> 0.961 XU Huan
  2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1 XU Huan
@ 2022-06-17  1:33 ` XU Huan
  1 sibling, 0 replies; 4+ messages in thread
From: XU Huan @ 2022-06-17  1:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Xu Huan

From: Xu Huan <xuhuan.fnst@fujitsu.com>

Changelog:
=========
*  Explicitly export from top level of package #69.
*  Transitioned pipelines from Travis-CI to GitHub Actions.
      Python 3.10 added.


Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
---
 .../python/{python3-smbus2_0.4.1.bb => python3-smbus2_0.4.2.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-smbus2_0.4.1.bb => python3-smbus2_0.4.2.bb} (84%)

diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb
rename to meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
index a27793012..f22a402df 100644
--- a/meta-python/recipes-devtools/python/python3-smbus2_0.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.2.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "6276eb599b76c4e74372f2582d2282f03b4398f0da16bc996608e4f21557ca9b"
+SRC_URI[sha256sum] = "634541ed794068a822fe7499f1577468b9d4641b68dd9bfb6d0eb7270f4d2a32"
 
 CLEANBROKEN = "1"
 
-- 
2.25.1



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

* Re: [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1
  2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1 XU Huan
@ 2022-06-20  3:54   ` akuster808
  0 siblings, 0 replies; 4+ messages in thread
From: akuster808 @ 2022-06-20  3:54 UTC (permalink / raw)
  To: xuhuan.fnst, openembedded-devel

Xu,

On 6/16/22 18:33, xuhuan.fnst@fujitsu.com wrote:
> From: Xu Huan <xuhuan.fnst@fujitsu.com>
>
> Changelog:
> =========
> Avoid reporting unnecessary-dict-index-lookup or unnecessary-list-index-lookup
> when the index lookup is part of a destructuring assignment.
>
> Fixed parsing of unrelated options in tox.ini.
>
> Fixed a crash when linting __new__() methods that return a call expression.
>
> Don't crash if we can't find the user's home directory.
>
> Fixed false positives for unused-import when aliasing typing e.g. as t
> and guarding imports under t.TYPE_CHECKING.
>
> Fixed a false positive regression in 2.13 for used-before-assignment where it is safe to rely
> on a name defined only in an except block because the else block returned.
>
> Fixed the use of abbreviations for some special options on the command line.
>
> Fix a crash in the optional pylint.extensions.private_import extension.

Thanks for the additional information. This helps Stable Branch 
Maintainers in deciding if a change is good to back-port. Sames me time.

Many thanks,
Armin
>
>
> bad-option-value (E0012) is now a warning unknown-option-value (W0012). Deleted messages that do not exist
> anymore in pylint now raise useless-option-value (R0022) instead of bad-option-value. This allows to
> distinguish between genuine typos and configuration that could be cleaned up. Existing message disables for
> bad-option-value will still work on both new messages.
>
> Signed-off-by: Xu Huan <xuhuan.fnst@fujitsu.com>
> ---
>   .../{python3-pylint_2.13.9.bb => python3-pylint_2.14.1.bb}      | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-pylint_2.13.9.bb => python3-pylint_2.14.1.bb} (86%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
> similarity index 86%
> rename from meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
> rename to meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
> index 1946a8923..d4d2d2c8a 100644
> --- a/meta-python/recipes-devtools/python/python3-pylint_2.13.9.bb
> +++ b/meta-python/recipes-devtools/python/python3-pylint_2.14.1.bb
> @@ -3,7 +3,7 @@ HOMEPAGE= "http://www.pylint.org/"
>   LICENSE = "GPL-2.0-only"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c107cf754550e65755c42985a5d4e9c9"
>   
> -SRC_URI[sha256sum] = "095567c96e19e6f57b5b907e67d265ff535e588fe26b12b5ebe1fc5645b2c731"
> +SRC_URI[sha256sum] = "549261e0762c3466cc001024c4419c08252cb8c8d40f5c2c6966fea690e7fe2a"
>   
>   inherit pypi setuptools3
>   
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#97529): https://lists.openembedded.org/g/openembedded-devel/message/97529
> Mute This Topic: https://lists.openembedded.org/mt/91813528/3616698
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [akuster808@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>



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

end of thread, other threads:[~2022-06-20  3:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-17  1:33 [oe] [meta-python] [PATCH] python3-mypy: upgrade 0.960 -> 0.961 XU Huan
2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-pylint: upgrade 2.13.9 -> 2.14.1 XU Huan
2022-06-20  3:54   ` akuster808
2022-06-17  1:33 ` [oe] [meta-python] [PATCH] python3-smbus2: upgrade 0.4.1 -> 0.4.2 XU Huan

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.