diff options
author | Trevor Gamblin <tgamblin@baylibre.com> | 2025-06-18 09:59:33 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-19 21:54:44 +0100 |
commit | 0a6432ac3fd99d1b35af6ff33a642dbf85e23093 (patch) | |
tree | 08b1b53dd403156e3e8a219bbc3f9bd2ea139226 | |
parent | e7c2d33df41b304849dd3679474af64e6725f222 (diff) | |
download | poky-0a6432ac3fd99d1b35af6ff33a642dbf85e23093.tar.gz |
python3-pytest: upgrade 8.3.5 -> 8.4.1
Changelog for 8.4.0: https://docs.pytest.org/en/stable/changelog.html#pytest-8-4-0-2025-06-02
Add colorama (moved to oe-core from meta-python) and pygments to
RDEPENDS.
Note that 8.4.0 accidentally removed pytest.PytestReturnNotNoneWarning,
which seems to have broken some tests (e.g. python3-pytz). See:
https://github.com/pytest-dev/pytest/releases/tag/8.4.1
(From OE-Core rev: 908c5535506592af654e7efac5b4a28a05da23f6)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python3-pytest_8.4.1.bb (renamed from meta/recipes-devtools/python/python3-pytest_8.3.5.bb) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python3-pytest_8.3.5.bb b/meta/recipes-devtools/python/python3-pytest_8.4.1.bb index 4d4e8b8511..1f98b6d87e 100644 --- a/meta/recipes-devtools/python/python3-pytest_8.3.5.bb +++ b/meta/recipes-devtools/python/python3-pytest_8.4.1.bb | |||
@@ -5,21 +5,23 @@ DESCRIPTION = "The pytest framework makes it easy to write small tests, yet scal | |||
5 | LICENSE = "MIT" | 5 | LICENSE = "MIT" |
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bd27e41b6550fe0fc45356d1d81ee37c" | 6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=bd27e41b6550fe0fc45356d1d81ee37c" |
7 | 7 | ||
8 | SRC_URI[sha256sum] = "f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845" | 8 | SRC_URI[sha256sum] = "7c67fd69174877359ed9371ec3af8a3d2b04741818c51e5e99cc1742251fa93c" |
9 | 9 | ||
10 | DEPENDS += "python3-setuptools-scm-native" | 10 | DEPENDS += "python3-setuptools-scm-native" |
11 | 11 | ||
12 | inherit update-alternatives pypi python_setuptools_build_meta | 12 | inherit update-alternatives pypi python_setuptools_build_meta |
13 | 13 | ||
14 | RDEPENDS:${PN} += " \ | 14 | RDEPENDS:${PN} += " \ |
15 | python3-xml \ | 15 | python3-colorama \ |
16 | python3-debugger \ | 16 | python3-debugger \ |
17 | python3-doctest \ | 17 | python3-doctest \ |
18 | python3-iniconfig \ | 18 | python3-iniconfig \ |
19 | python3-json \ | 19 | python3-json \ |
20 | python3-packaging \ | 20 | python3-packaging \ |
21 | python3-pluggy \ | 21 | python3-pluggy \ |
22 | python3-pygments \ | ||
22 | python3-tomllib \ | 23 | python3-tomllib \ |
24 | python3-xml \ | ||
23 | " | 25 | " |
24 | 26 | ||
25 | ALTERNATIVE:${PN} += "py.test pytest" | 27 | ALTERNATIVE:${PN} += "py.test pytest" |