All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] python3-jinja2: upgrade 3.0.2 -> 3.0.3
@ 2021-11-15 15:04 Wang Mingyu
  2021-11-15 15:04 ` [OE-core] [PATCH] python3-more-itertools: upgrade 8.10.0 -> 8.11.0 Wang Mingyu
  0 siblings, 1 reply; 2+ messages in thread
From: Wang Mingyu @ 2021-11-15 15:04 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

What's Changed
update requirements by @davidism in #1524
test Python 3.10 by @davidism in #1530
test Python 3.11 by @davidism in #1531
Tests: Adapt expected traceback regexes for Python 3.11.0a1 by @hroncok in #1527
simplify CodeType rewriting by @davidism in #1536
native: keep same behavior on Python 3.10 by @mkrizek in #1537
Reduce async overhead due to auto_await by @mohd-akram in #1516
Use object.__hash__ for Node.__hash__ by @klette in #1522
Fix typos by @kianmeng in #1509
rewrite Template class doc by @davidism in #1538
remove reference to macro.defaults by @davidism in #1539
rewrite docs about extending template objects by @davidism in #1540
document chained pow order by @davidism in #1541
PackageLoader works with single module file by @davidism in #1542
release version 3.0.3 by @davidism in #1543

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

diff --git a/meta/recipes-devtools/python/python3-jinja2_3.0.2.bb b/meta/recipes-devtools/python/python3-jinja2_3.0.3.bb
similarity index 92%
rename from meta/recipes-devtools/python/python3-jinja2_3.0.2.bb
rename to meta/recipes-devtools/python/python3-jinja2_3.0.3.bb
index 139fe663e6..c416acbf92 100644
--- a/meta/recipes-devtools/python/python3-jinja2_3.0.2.bb
+++ b/meta/recipes-devtools/python/python3-jinja2_3.0.3.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://pypi.org/project/Jinja/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=5dc88300786f1c214c1e9827a5229462"
 
-SRC_URI[sha256sum] = "827a0e32839ab1600d4eb1c4c33ec5a8edfbc5cb42dafa13b81f182f97784b45"
+SRC_URI[sha256sum] = "611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7"
 
 PYPI_PACKAGE = "Jinja2"
 
-- 
2.25.1



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

* [OE-core] [PATCH] python3-more-itertools: upgrade 8.10.0 -> 8.11.0
  2021-11-15 15:04 [OE-core] [PATCH] python3-jinja2: upgrade 3.0.2 -> 3.0.3 Wang Mingyu
@ 2021-11-15 15:04 ` Wang Mingyu
  0 siblings, 0 replies; 2+ messages in thread
From: Wang Mingyu @ 2021-11-15 15:04 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

8.11.0:
New functions
The :func:`before_and_after`, :func:`sliding_window`, and :func:`triplewise` recipes from the Python 3.10 docs were added
:func:`duplicates_everseen` and :func:`duplicates_justseen` (thanks to OrBin and DavidPratt512)
:func:`minmax` (thanks to Ricocotam, MSeifert04, and ruancomelli)
:func:`strictly_n` (thanks to hwalinga and NotWearingPants)
:func:`unique_in_window`
Changes to existing functions
:func:`groupby_transform` had its type stub improved (thanks to mjk4 and ruancomelli)
:func:`is_sorted` now accepts a strict parameter (thanks to Dutcho and ruancomelli)
:func:`zip_broadcast` was updated to fix a bug (thanks to kalekundert)

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

diff --git a/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb b/meta/recipes-devtools/python/python3-more-itertools_8.11.0.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb
rename to meta/recipes-devtools/python/python3-more-itertools_8.11.0.bb
index 93d3ad60f8..a18bb4d667 100644
--- a/meta/recipes-devtools/python/python3-more-itertools_8.10.0.bb
+++ b/meta/recipes-devtools/python/python3-more-itertools_8.11.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/erikrose/more-itertools"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
 
-SRC_URI[sha256sum] = "1debcabeb1df793814859d64a81ad7cb10504c24349368ccf214c664c474f41f"
+SRC_URI[sha256sum] = "0a2fd25d343c08d7e7212071820e7e7ea2f41d8fb45d6bc8a00cd6ce3b7aab88"
 
 inherit pypi setuptools3 ptest
 
-- 
2.25.1



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

end of thread, other threads:[~2021-11-15 15:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-15 15:04 [OE-core] [PATCH] python3-jinja2: upgrade 3.0.2 -> 3.0.3 Wang Mingyu
2021-11-15 15:04 ` [OE-core] [PATCH] python3-more-itertools: upgrade 8.10.0 -> 8.11.0 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.