From eda864feec92d2ee4e1d0aef7ef4b8010ed42cda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 08:58:11 +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.0...8.0.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3aa6c3b..a69f1f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ numpy = "^1.21" # For NumPy Typing. optional = true [tool.poetry.group.test.dependencies] -pytest = "^7" +pytest = ">=7,<9" [build-system] requires = ["poetry_core"]