From 0728535d0d250f11b6384391e060a6b2d24a2a1a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Sep 2025 09:08:22 +0000 Subject: [PATCH] Update pytest requirement from <8.0,>=7.3 to >=7.3,<9.0 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/7.3.0...8.4.2) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0473231e..b84d5bc4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ lint = [ "flake8-pyproject", "flake8-docstrings", "mypy>=1.3,<2.0", - "pytest>=7.3,<8.0", # needed for linting tests + "pytest>=7.3,<9.0", # needed for linting tests "types-Jinja2>=2.11,<3.0", "types-jsonschema>=4.17,<5.0", "types-protobuf>=6.0,<7.0", @@ -59,7 +59,7 @@ lint = [ "types-requests" ] test = [ - "pytest>=7.3,<8.0", + "pytest>=7.3,<9.0", "pytest-mock", "pytest-xdist>=3.2,<4.0", "pytest-cov>=4.1,<5.0",