summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnout Vandecappelle <arnout@mind.be>2023-02-02 13:49:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-15 21:47:00 +0000
commit36389ac010f09e0ba6dbdafc5dc726075fd53c6a (patch)
treefbb4382b4ece9c95b7e6fe2de9827f2f846e863d
parent3384c7fb3f34c26585329f0fbadbb0890823f185 (diff)
downloadpoky-36389ac010f09e0ba6dbdafc5dc726075fd53c6a.tar.gz
python3-pytest: depend on python3-tomli instead of python3-toml
Since version 7.0.0 [1], pytest switched from the toml package to the tomli package for parsing pyproject.toml configuration files [2]. This change is not immediately noticable during tests, because the toml/tomli module is only important if a pyproject.toml is actually present in a project. [1] https://docs.pytest.org/en/latest/changelog.html#pytest-7-0-0rc1-2021-12-06 [2] https://github.com/pytest-dev/pytest/issues/8789 (From OE-Core rev: 04e31f0035ad29afc3cdcf9730cd76cd725b8a20) Signed-off-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/python/python3-pytest_7.1.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3-pytest_7.1.3.bb b/meta/recipes-devtools/python/python3-pytest_7.1.3.bb
index 373f7f35fa..9710242655 100644
--- a/meta/recipes-devtools/python/python3-pytest_7.1.3.bb
+++ b/meta/recipes-devtools/python/python3-pytest_7.1.3.bb
@@ -26,7 +26,7 @@ RDEPENDS:${PN}:class-target += " \
26 ${PYTHON_PN}-py \ 26 ${PYTHON_PN}-py \
27 ${PYTHON_PN}-setuptools \ 27 ${PYTHON_PN}-setuptools \
28 ${PYTHON_PN}-six \ 28 ${PYTHON_PN}-six \
29 ${PYTHON_PN}-toml \ 29 ${PYTHON_PN}-tomli \
30 ${PYTHON_PN}-wcwidth \ 30 ${PYTHON_PN}-wcwidth \
31" 31"
32 32