From 91e581ac2c85bafea540dff5ea5d8b1cf812575a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Oct 2023 06:57:54 +0000 Subject: [PATCH] Update mock requirement from ==4.* to ==5.* Updates the requirements on [mock](https://github.com/testing-cabal/mock) to permit the latest version. - [Changelog](https://github.com/testing-cabal/mock/blob/master/CHANGELOG.rst) - [Commits](https://github.com/testing-cabal/mock/compare/4.0.0b1...5.1.0) --- updated-dependencies: - dependency-name: mock dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- tests/requirements_for_software_tests.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5a10d77d..728f2a55 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -63,7 +63,7 @@ test = [ "pytest == 7.*", "pytest-cov", "pytest-asyncio", - "mock == 4.*" + "mock == 5.*" ] docs = [ "sphinx", diff --git a/tests/requirements_for_software_tests.txt b/tests/requirements_for_software_tests.txt index 4e1de699..b6351e0e 100644 --- a/tests/requirements_for_software_tests.txt +++ b/tests/requirements_for_software_tests.txt @@ -1,4 +1,4 @@ pytest==7.* pytest-cov==3.* pytest-asyncio>=0.17.2 -mock==4.* \ No newline at end of file +mock==5.* \ No newline at end of file