All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-absl: upgrade 0.15.0 -> 1.0.0
@ 2021-11-16  3:35 Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-alembic: upgrade 1.7.4 -> 1.7.5 Wang Mingyu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wang Mingyu @ 2021-11-16  3:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changed
absl-py no longer supports Python 2.7, 3.4, 3.5. All versions have reached
end-of-life for more than a year now.
New releases will be tagged as vX.Y.Z instead of pypi-vX.Y.Z in the git
repo going forward.

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

diff --git a/meta-python/recipes-devtools/python/python3-absl_0.15.0.bb b/meta-python/recipes-devtools/python/python3-absl_1.0.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-absl_0.15.0.bb
rename to meta-python/recipes-devtools/python/python3-absl_1.0.0.bb
index f25201dc3f..736e6a9444 100644
--- a/meta-python/recipes-devtools/python/python3-absl_0.15.0.bb
+++ b/meta-python/recipes-devtools/python/python3-absl_1.0.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[sha256sum] = "72d782fbeafba66ba3e525d46bccac949b9a174dbf66233e50ece09ee688dc81"
+SRC_URI[sha256sum] = "ac511215c01ee9ae47b19716599e8ccfa746f2e18de72bdf641b79b22afa27ea"
 
 PYPI_PACKAGE = "absl-py"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-alembic: upgrade 1.7.4 -> 1.7.5
  2021-11-16  3:35 [oe] [meta-python] [PATCH] python3-absl: upgrade 0.15.0 -> 1.0.0 Wang Mingyu
@ 2021-11-16  3:35 ` Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-cmd2: upgrade 2.2.0 -> 2.3.0 Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-gast: upgrade 0.5.2 -> 0.5.3 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2021-11-16  3:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

bug fix:
Adjustments to the test suite to accommodate for error message changes
occurring as of SQLAlchemy 1.4.27.

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

diff --git a/meta-python/recipes-devtools/python/python3-alembic_1.7.4.bb b/meta-python/recipes-devtools/python/python3-alembic_1.7.5.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-alembic_1.7.4.bb
rename to meta-python/recipes-devtools/python/python3-alembic_1.7.5.bb
index 17e9e533cd..131d5d43a0 100644
--- a/meta-python/recipes-devtools/python/python3-alembic_1.7.4.bb
+++ b/meta-python/recipes-devtools/python/python3-alembic_1.7.5.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=c4ece55266dcdd02ce165b1ee0e490bb"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "9d33f3ff1488c4bfab1e1a6dfebbf085e8a8e1a3e047a43ad29ad1f67f012a1d"
+SRC_URI[sha256sum] = "7c328694a2e68f03ee971e63c3bd885846470373a5b532cf2c9f1601c413b153"
 
 PYPI_PACKAGE = "alembic"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-cmd2: upgrade 2.2.0 -> 2.3.0
  2021-11-16  3:35 [oe] [meta-python] [PATCH] python3-absl: upgrade 0.15.0 -> 1.0.0 Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-alembic: upgrade 1.7.4 -> 1.7.5 Wang Mingyu
@ 2021-11-16  3:35 ` Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-gast: upgrade 0.5.2 -> 0.5.3 Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2021-11-16  3:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Bug Fixes
Fixed AttributeError in rl_get_prompt() when prompt is None.
Fixed bug where using choices on a Settable didn't verify that a valid choice had been entered.
Fixed bug introduced in cmd2 2.0.0 in which select() converts return values to strings. It should never
have converted return values.
Enhancements
Added settings to Column class which prevent a table from overriding existing styles in header
and/or data text. This allows for things like nesting an AlternatingTable in another AlternatingTable.
AlternatingTable no longer automatically applies background color to borders. This was done to improve
appearance since the background color extended beyond the borders of the table.
Added ability to colorize all aspects of AlternatingTables, BorderedTables, and SimpleTables.
Added support for 8-bit/256-colors with the cmd2.EightBitFg and cmd2.EightBitBg classes.
Added support for 24-bit/RGB colors with the cmd2.RgbFg and cmd2.RgbBg classes.
Removed dependency on colorama.
Changed type of ansi.allow_style from a string to an ansi.AllowStyle Enum class.
Deprecations
Deprecated cmd2.fg. Use cmd2.Fg instead.
Deprecated cmd2.bg. Use cmd2.Bg instead.
Breaking Changes
To support the color upgrade, all cmd2 colors now inherit from either ansi.FgColor or ansi.BgColor.
Therefore, ansi.style() no longer accepts colors as strings.

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

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_2.2.0.bb b/meta-python/recipes-devtools/python/python3-cmd2_2.3.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-cmd2_2.2.0.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_2.3.0.bb
index 2632ce1c80..0cc8e9ce50 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_2.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_2.3.0.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=4c527bcb481233ebcb803de975f42701"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-SRC_URI[sha256sum] = "34cd12424d9e2835eff125146af3d9f4a4c2931c6bc5a3cea9790bd4f55756d9"
+SRC_URI[sha256sum] = "2493ab8e5baab3d1a0325ea50920674a63de41bee4c63a634ac5cb42bfd63c1b"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-gast: upgrade 0.5.2 -> 0.5.3
  2021-11-16  3:35 [oe] [meta-python] [PATCH] python3-absl: upgrade 0.15.0 -> 1.0.0 Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-alembic: upgrade 1.7.4 -> 1.7.5 Wang Mingyu
  2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-cmd2: upgrade 2.2.0 -> 2.3.0 Wang Mingyu
@ 2021-11-16  3:35 ` Wang Mingyu
  2 siblings, 0 replies; 4+ messages in thread
From: Wang Mingyu @ 2021-11-16  3:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

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

diff --git a/meta-python/recipes-devtools/python/python3-gast_0.5.2.bb b/meta-python/recipes-devtools/python/python3-gast_0.5.3.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-gast_0.5.2.bb
rename to meta-python/recipes-devtools/python/python3-gast_0.5.3.bb
index d318973a17..7fd49456d2 100644
--- a/meta-python/recipes-devtools/python/python3-gast_0.5.2.bb
+++ b/meta-python/recipes-devtools/python/python3-gast_0.5.3.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3ad9b6802e713fc5e307e1230f1ea90"
 
-SRC_URI[sha256sum] = "f81fcefa8b982624a31c9e4ec7761325a88a0eba60d36d1da90e47f8fe3c67f7"
+SRC_URI[sha256sum] = "cfbea25820e653af9c7d1807f659ce0a0a9c64f2439421a7bba4f0983f532dea"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

end of thread, other threads:[~2021-11-16  3:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-16  3:35 [oe] [meta-python] [PATCH] python3-absl: upgrade 0.15.0 -> 1.0.0 Wang Mingyu
2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-alembic: upgrade 1.7.4 -> 1.7.5 Wang Mingyu
2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-cmd2: upgrade 2.2.0 -> 2.3.0 Wang Mingyu
2021-11-16  3:35 ` [oe] [meta-python] [PATCH] python3-gast: upgrade 0.5.2 -> 0.5.3 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.