From cd765ff58afa465b994778ff787fc152ebc0aa5c Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 18 Jul 2023 12:25:34 +0800 Subject: python3-mock: upgrade 5.0.2 -> 5.1.0 Changelog: =========== -bpo-44185: :func:'unittest.mock.mock_open' will call the :func:'close' method of the file handle mock when it is exiting from the context manager. -gh-94924: :func:'unittest.mock.create_autospec' now properly returns coroutine functions compatible with :func:'inspect.iscoroutinefunction' -bpo-17013: Add ThreadingMock to :mod:'unittest.mock' that can be used to create Mock objects that can wait until they are called. -bpo-41768: :mod:'unittest.mock' speccing no longer calls class properties. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- .../recipes-devtools/python/python3-mock_5.0.2.bb | 19 ------------------- .../recipes-devtools/python/python3-mock_5.1.0.bb | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 19 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-mock_5.0.2.bb create mode 100644 meta-python/recipes-devtools/python/python3-mock_5.1.0.bb (limited to 'meta-python/recipes-devtools') diff --git a/meta-python/recipes-devtools/python/python3-mock_5.0.2.bb b/meta-python/recipes-devtools/python/python3-mock_5.0.2.bb deleted file mode 100644 index 6b511d82f7..0000000000 --- a/meta-python/recipes-devtools/python/python3-mock_5.0.2.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "A Python Mocking and Patching Library for Testing" -HOMEPAGE = "https://pypi.python.org/pypi/mock" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=de9dfbf780446b18aab11f00baaf5b7e" - -inherit pypi setuptools3 - -RDEPENDS:${PN} += " \ - python3-cmd2 \ - python3-mccabe \ - python3-pep8 \ - python3-prettytable \ - python3-pyflakes \ - python3-pyparsing \ - python3-unittest \ -" - -SRC_URI[sha256sum] = "06f18d7d65b44428202b145a9a36e99c2ee00d1eb992df0caf881d4664377891" diff --git a/meta-python/recipes-devtools/python/python3-mock_5.1.0.bb b/meta-python/recipes-devtools/python/python3-mock_5.1.0.bb new file mode 100644 index 0000000000..d9ecb9d4c8 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-mock_5.1.0.bb @@ -0,0 +1,19 @@ +DESCRIPTION = "A Python Mocking and Patching Library for Testing" +HOMEPAGE = "https://pypi.python.org/pypi/mock" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=de9dfbf780446b18aab11f00baaf5b7e" + +inherit pypi setuptools3 + +RDEPENDS:${PN} += " \ + python3-cmd2 \ + python3-mccabe \ + python3-pep8 \ + python3-prettytable \ + python3-pyflakes \ + python3-pyparsing \ + python3-unittest \ +" + +SRC_URI[sha256sum] = "5e96aad5ccda4718e0a229ed94b2024df75cc2d55575ba5762d31f5767b8767d" -- cgit v1.2.3-54-g00ecf