From 9629a6508938c4e004951867352757a536e4d6b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 05:17:55 +0000 Subject: [PATCH] Update pytest requirement from ==7.* to >=7,<9 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.0.0rc1...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 fc51c5a..5078ce1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,10 +43,10 @@ dynamic = ["version"] [project.optional-dependencies] lint = [ "mypy==1.*", - "pytest==7.*", + "pytest>=7,<9", ] test = [ - "pytest==7.*", + "pytest>=7,<9", "pytest-cov", ]