From cb9a7ae5cba6de915274301428a788ea324befea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 22:14:43 +0000 Subject: [PATCH 1/2] build(deps-dev): Update pytest-cov requirement in /bindings/python Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v4.1.0...v5.0.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- bindings/python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 2b3e74c..a3a7f86 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -26,7 +26,7 @@ test = [ "pytest ~= 7.4; python_version == \"3.7\"", "pytest ~= 8.1; python_version > \"3.7\"", "pytest-asyncio ~= 0.21", - "pytest-cov ~= 4.1", + "pytest-cov ~= 5.0", "pytest-xdist ~= 3.5", "ruff ~= 0.2", ] From 2ac1e0cb359dc39eae5e554fb234bab8f1c593fa Mon Sep 17 00:00:00 2001 From: Scott Wilson Date: Mon, 1 Apr 2024 20:49:15 -0700 Subject: [PATCH 2/2] Update pyproject.toml Signed-off-by: Scott Wilson --- bindings/python/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index a3a7f86..9a7b00a 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -26,7 +26,8 @@ test = [ "pytest ~= 7.4; python_version == \"3.7\"", "pytest ~= 8.1; python_version > \"3.7\"", "pytest-asyncio ~= 0.21", - "pytest-cov ~= 5.0", + "pytest-cov ~= 4.1; python_version == \"3.7\"", + "pytest-cov ~= 5.0; python_version > \"3.7\"", "pytest-xdist ~= 3.5", "ruff ~= 0.2", ]