From 0faa64dc0ae609aa60e6fe9282e5f9c0a860fbab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Jun 2025 06:32:28 +0000 Subject: [PATCH] Update pytest requirement from <8.4,>=6.2 to >=6.2,<8.5 Updates the requirements on [pytest](https://github.com/pytest-dev/pytest) to permit the latest version. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/6.2.0...8.4.0) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.0 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 03d144b3..a983c88c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,7 +33,7 @@ dependencies = [ [project.optional-dependencies] dev = [ "coverage>=5.3,<7.9", # Lets us track what code is being tested - "pytest>=6.2,<8.4", # test framework + "pytest>=6.2,<8.5", # test framework ] doc = [ "doc8>=0.9,<1.2",