* [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run
@ 2023-03-01 18:10 Tim Orling
2023-03-01 18:10 ` [PATCH 1/4] python3-more-itertools: upgrade 9.0.0 -> 9.1.0 Tim Orling
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Tim Orling @ 2023-03-01 18:10 UTC (permalink / raw)
To: openembedded-core
All ptests for python3-more-itertools and python3-hypothesis pass on
qemux86-64
The following changes since commit 33d9b3a8ed186c2d212acb83f715367912010e7f:
systemd-systemctl: Create machine-id with "uninitialized" text in it (2023-02-28 07:53:54 +0000)
are available in the Git repository at:
https://git.yoctoproject.org/poky-contrib timo/recipe-upgrades
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=timo/recipe-upgrades
Tim Orling (4):
python3-more-itertools: upgrade 9.0.0 -> 9.1.0
python3-hypothesis: upgrade 6.68.1 -> 6.68.2
python3-babel: upgrade 2.11.0 -> 2.12.1
python3-zipp: upgrade 3.14.0 -> 3.15.0
.../{python3-babel_2.11.0.bb => python3-babel_2.12.1.bb} | 4 ++--
...hon3-hypothesis_6.68.1.bb => python3-hypothesis_6.68.2.bb} | 2 +-
...ore-itertools_9.0.0.bb => python3-more-itertools_9.1.0.bb} | 2 +-
.../python/{python3-zipp_3.14.0.bb => python3-zipp_3.15.0.bb} | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
rename meta/recipes-devtools/python/{python3-babel_2.11.0.bb => python3-babel_2.12.1.bb} (76%)
rename meta/recipes-devtools/python/{python3-hypothesis_6.68.1.bb => python3-hypothesis_6.68.2.bb} (91%)
rename meta/recipes-devtools/python/{python3-more-itertools_9.0.0.bb => python3-more-itertools_9.1.0.bb} (86%)
rename meta/recipes-devtools/python/{python3-zipp_3.14.0.bb => python3-zipp_3.15.0.bb} (85%)
--
2.30.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] python3-more-itertools: upgrade 9.0.0 -> 9.1.0
2023-03-01 18:10 [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run Tim Orling
@ 2023-03-01 18:10 ` Tim Orling
2023-03-01 18:10 ` [PATCH 2/4] python3-hypothesis: upgrade 6.68.1 -> 6.68.2 Tim Orling
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Tim Orling @ 2023-03-01 18:10 UTC (permalink / raw)
To: openembedded-core
Upstream docs currently have a typo showing the changes as 8.14.0
https://github.com/more-itertools/more-itertools/commit/89d58c2ec089f3df54ed6cc9279949b8e2bbcd29
9.1.0
-----
* New functions
- iter_index() (from the Python itertools docs)
- transpose() (from the Python itertools docs)
- matmul() (from the Python itertools docs)
- factor() (from the Python itertools docs)
- gray_product() (thanks to haukex)
* Changes to existing functions
- sieve() was updated to match the Python itertools docs
- maxsplit() was updated to fix a bug (thanks to abingham)
- sliced() had its type hint updated (thanks to ad-chaos)
* Other changes
- The batched function is marked as deprecated and will be removed in a
future major release. For Python 3.12 and above, use itertools.batched
instead. (thanks to neutrinoceros)
- The type hints now used postponed evaluation of annotations from PEP 563
(thanks to Isira-Seneviratne)
- Some documentation issues were fixed (thanks to Voskov and jdkandersson)
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All ptests pass on qemux86-64
...-more-itertools_9.0.0.bb => python3-more-itertools_9.1.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-more-itertools_9.0.0.bb => python3-more-itertools_9.1.0.bb} (86%)
diff --git a/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb b/meta/recipes-devtools/python/python3-more-itertools_9.1.0.bb
similarity index 86%
rename from meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
rename to meta/recipes-devtools/python/python3-more-itertools_9.1.0.bb
index fce3aea8977..7602350795f 100644
--- a/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
+++ b/meta/recipes-devtools/python/python3-more-itertools_9.1.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] = "5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab"
+SRC_URI[sha256sum] = "cabaa341ad0389ea83c17a94566a53ae4c9d07349861ecb14dc6d0345cf9ac5d"
inherit pypi python_flit_core ptest
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/4] python3-hypothesis: upgrade 6.68.1 -> 6.68.2
2023-03-01 18:10 [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run Tim Orling
2023-03-01 18:10 ` [PATCH 1/4] python3-more-itertools: upgrade 9.0.0 -> 9.1.0 Tim Orling
@ 2023-03-01 18:10 ` Tim Orling
2023-03-01 18:10 ` [PATCH 3/4] python3-babel: upgrade 2.11.0 -> 2.12.1 Tim Orling
2023-03-01 18:10 ` [PATCH 4/4] python3-zipp: upgrade 3.14.0 -> 3.15.0 Tim Orling
3 siblings, 0 replies; 5+ messages in thread
From: Tim Orling @ 2023-03-01 18:10 UTC (permalink / raw)
To: openembedded-core
https://hypothesis.readthedocs.io/en/latest/changes.html#v6-68-2
6.68.2 - 2023-02-17
This patch fixes missing imports of the re module, when ghostwriting tests
which include compiled patterns or regex flags. Thanks to Jens Heinrich for
reporting and promptly fixing this bug!
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
All ptests pass on qemux86-64
...ython3-hypothesis_6.68.1.bb => python3-hypothesis_6.68.2.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-hypothesis_6.68.1.bb => python3-hypothesis_6.68.2.bb} (91%)
diff --git a/meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb b/meta/recipes-devtools/python/python3-hypothesis_6.68.2.bb
similarity index 91%
rename from meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb
rename to meta/recipes-devtools/python/python3-hypothesis_6.68.2.bb
index 1db31515ccc..23e842f2e28 100644
--- a/meta/recipes-devtools/python/python3-hypothesis_6.68.1.bb
+++ b/meta/recipes-devtools/python/python3-hypothesis_6.68.2.bb
@@ -13,7 +13,7 @@ SRC_URI += " \
file://test_rle.py \
"
-SRC_URI[sha256sum] = "b37bd77b4b7f404a59ff965e24be8aec4209323866e34ececdf416522c6d0854"
+SRC_URI[sha256sum] = "a7eb2b0c9a18560d8197fe35047ceb58e7e8ab7623a3e5a82613f6a2cd71cffa"
RDEPENDS:${PN} += " \
python3-attrs \
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 3/4] python3-babel: upgrade 2.11.0 -> 2.12.1
2023-03-01 18:10 [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run Tim Orling
2023-03-01 18:10 ` [PATCH 1/4] python3-more-itertools: upgrade 9.0.0 -> 9.1.0 Tim Orling
2023-03-01 18:10 ` [PATCH 2/4] python3-hypothesis: upgrade 6.68.1 -> 6.68.2 Tim Orling
@ 2023-03-01 18:10 ` Tim Orling
2023-03-01 18:10 ` [PATCH 4/4] python3-zipp: upgrade 3.14.0 -> 3.15.0 Tim Orling
3 siblings, 0 replies; 5+ messages in thread
From: Tim Orling @ 2023-03-01 18:10 UTC (permalink / raw)
To: openembedded-core
https://babel.pocoo.org/en/latest/changelog.html#version-2-12-1
Version 2.12.1
* Fixes
- Version 2.12.0 was missing the py.typed marker file. Thanks to Alex
Waygood for the fix! #975
- The copyright year in all files was bumped to 2023.
License-Update: copyright years
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
.../{python3-babel_2.11.0.bb => python3-babel_2.12.1.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/python/{python3-babel_2.11.0.bb => python3-babel_2.12.1.bb} (76%)
diff --git a/meta/recipes-devtools/python/python3-babel_2.11.0.bb b/meta/recipes-devtools/python/python3-babel_2.12.1.bb
similarity index 76%
rename from meta/recipes-devtools/python/python3-babel_2.11.0.bb
rename to meta/recipes-devtools/python/python3-babel_2.12.1.bb
index f6eae88b804..dfa45fbdf6e 100644
--- a/meta/recipes-devtools/python/python3-babel_2.11.0.bb
+++ b/meta/recipes-devtools/python/python3-babel_2.12.1.bb
@@ -1,9 +1,9 @@
DESCRIPTION = "A collection of tools for internationalizing Python applications"
HOMEPAGE = "http://babel.edgewall.org/"
LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=fb98e9f202b978d6569807b9525cc691"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0f97d9a63e91407b4c0d01efde91cfc0"
-SRC_URI[sha256sum] = "5ef4b3226b0180dedded4229651c8b0e1a3a6a2837d45a073272f313e4cf97f6"
+SRC_URI[sha256sum] = "cc2d99999cd01d44420ae725a21c9e3711b3aadc7976d6147f622d8581963455"
PYPI_PACKAGE = "Babel"
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 4/4] python3-zipp: upgrade 3.14.0 -> 3.15.0
2023-03-01 18:10 [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run Tim Orling
` (2 preceding siblings ...)
2023-03-01 18:10 ` [PATCH 3/4] python3-babel: upgrade 2.11.0 -> 2.12.1 Tim Orling
@ 2023-03-01 18:10 ` Tim Orling
3 siblings, 0 replies; 5+ messages in thread
From: Tim Orling @ 2023-03-01 18:10 UTC (permalink / raw)
To: openembedded-core
https://zipp.readthedocs.io/en/latest/history.html#v3-15-0
v3.15.0 (24 Feb 2023)
* gh-102209: test_implied_dirs_performance now tests measures the time
complexity experimentally.
Reference:
https://github.com/python/cpython/issues/102209
Signed-off-by: Tim Orling <tim.orling@konsulko.com>
---
.../python/{python3-zipp_3.14.0.bb => python3-zipp_3.15.0.bb} | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
rename meta/recipes-devtools/python/{python3-zipp_3.14.0.bb => python3-zipp_3.15.0.bb} (85%)
diff --git a/meta/recipes-devtools/python/python3-zipp_3.14.0.bb b/meta/recipes-devtools/python/python3-zipp_3.15.0.bb
similarity index 85%
rename from meta/recipes-devtools/python/python3-zipp_3.14.0.bb
rename to meta/recipes-devtools/python/python3-zipp_3.15.0.bb
index dc5091f6c70..5b42dd8139b 100644
--- a/meta/recipes-devtools/python/python3-zipp_3.14.0.bb
+++ b/meta/recipes-devtools/python/python3-zipp_3.15.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jaraco/zipp"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE;md5=7a7126e068206290f3fe9f8d6c713ea6"
-SRC_URI[sha256sum] = "9e5421e176ef5ab4c0ad896624e87a7b2f07aca746c9b2aa305952800cb8eecb"
+SRC_URI[sha256sum] = "112929ad649da941c23de50f356a2b5570c954b65150642bccdd66bf194d224b"
DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-03-01 18:11 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-01 18:10 [PATCH 0/4] Recipe upgrades for AUH 01 Mar 2023 Run Tim Orling
2023-03-01 18:10 ` [PATCH 1/4] python3-more-itertools: upgrade 9.0.0 -> 9.1.0 Tim Orling
2023-03-01 18:10 ` [PATCH 2/4] python3-hypothesis: upgrade 6.68.1 -> 6.68.2 Tim Orling
2023-03-01 18:10 ` [PATCH 3/4] python3-babel: upgrade 2.11.0 -> 2.12.1 Tim Orling
2023-03-01 18:10 ` [PATCH 4/4] python3-zipp: upgrade 3.14.0 -> 3.15.0 Tim Orling
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox