summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
diff options
context:
space:
mode:
authorTim Orling <ticotimo@gmail.com>2022-11-01 20:18:26 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-11-03 07:46:46 +0000
commit57522528c0a456d715b597a959ed7c4141ca7c6d (patch)
tree29e0a6c0086c41555daaea136bcb2c72ccc95a43 /meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
parent5edbb3a5258b696aee5c7b076e091e5df98e88c3 (diff)
downloadpoky-57522528c0a456d715b597a959ed7c4141ca7c6d.tar.gz
python3-more-itertools: upgrade 8.14.0 -> 9.0.0
https://github.com/more-itertools/more-itertools/blob/master/docs/versions.rst#900 9.0.0 * Potentially breaking changes - `grouper` no longer accepts an integer as its first argument. Previously this raised a DeprecationWarning. - `collate` has been removed. Use the built-in `heapq.merge` instead. - `windowed` now yields nothing when its iterable is empty. * This library now advertises support for Python 3.7+. * New functions - `constrained_batches` - `batched` (from the Python itertools docs) - `polynomial_from_roots` (from the Python itertools docs) -`sieve` (from the Python itertools docs) * Other changes - Some documentation issues were fixed (thanks to nanouasyn) (From OE-Core rev: f31ea2784428114acae33522a80208aa35d133bc) Signed-off-by: Tim Orling <tim.orling@konsulko.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb')
-rw-r--r--meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb b/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
new file mode 100644
index 0000000000..fce3aea897
--- /dev/null
+++ b/meta/recipes-devtools/python/python3-more-itertools_9.0.0.bb
@@ -0,0 +1,27 @@
1DESCRIPTION = "More routines for operating on iterables, beyond itertools"
2HOMEPAGE = "https://github.com/erikrose/more-itertools"
3LICENSE = "MIT"
4LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
5
6SRC_URI[sha256sum] = "5a6257e40878ef0520b1803990e3e22303a41b5714006c32a3fd8304b26ea1ab"
7
8inherit pypi python_flit_core ptest
9
10SRC_URI += " \
11 file://run-ptest \
12"
13
14RDEPENDS:${PN} += " \
15 ${PYTHON_PN}-asyncio \
16 "
17
18RDEPENDS:${PN}-ptest += " \
19 ${PYTHON_PN}-pytest \
20 "
21
22do_install_ptest() {
23 install -d ${D}${PTEST_PATH}/tests
24 cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
25}
26
27BBCLASSEXTEND = "native nativesdk"