From ec44a5948e78913d5d9de2de5cc30b36c893ff76 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 09:37:16 +0000 Subject: [PATCH] Update pytest requirement from ~=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.0.0) --- updated-dependencies: - dependency-name: pytest 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 d377572e..2650c8eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -47,7 +47,7 @@ lint = [ "flake8-pyproject", "flake8-docstrings", "mypy~=1.3", - "pytest~=7.3", # needed for linting tests + "pytest>=7.3,<9.0", # needed for linting tests "types-Jinja2~=2.11", "types-jsonschema~=4.17", "types-protobuf~=4.24.0", @@ -56,7 +56,7 @@ lint = [ "types-requests" ] test = [ - "pytest~=7.3", + "pytest>=7.3,<9.0", "pytest-xdist~=3.2", "hypothesis~=6.87" ]