From 84a74d2fad16d029667d8b2feaad798af15b317b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jul 2024 20:35:39 +0000 Subject: [PATCH 1/2] Update pytest-cov requirement from ~=4.1.0 to >=4.1,<5.1 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] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b60d33d5..f88e4ad7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,7 +85,7 @@ dev-dependencies = [ "pytest ~= 8.0", "pytest-mock", "mock", - "pytest-cov ~= 4.1.0", + "pytest-cov >= 4.1,< 5.1", "coverage ~= 7.4", "junit2html >= 30.1,< 32.0", # Pyright >= 1.1.367 breaks the build. From 11869dab1b4154442dc4676e9eebd7c337f79650 Mon Sep 17 00:00:00 2001 From: Aaron Holmes Date: Tue, 2 Jul 2024 13:38:34 -0700 Subject: [PATCH 2/2] Accept Dependabot's versioning format, but restrict pytest-cov to < 5.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index f88e4ad7..d012c7cc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,7 +85,7 @@ dev-dependencies = [ "pytest ~= 8.0", "pytest-mock", "mock", - "pytest-cov >= 4.1,< 5.1", + "pytest-cov >= 4.1,< 5.0", "coverage ~= 7.4", "junit2html >= 30.1,< 32.0", # Pyright >= 1.1.367 breaks the build.