From fd5ebb478d785d3bf2bbd4cd0ab39c9725f62753 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 05:02:11 +0000 Subject: [PATCH] build(deps-dev): update pytest requirement from <8.0,>=7.0 to >=7.0,<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.0.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 f35a584..28d48a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,12 +65,12 @@ gui = [ dev = [ "black>=19.0", "isort>=4.3", - "pytest>=7.0,<8.0", + "pytest>=7.0,<9.0", "pytest-cov>=3.0,<5.0", "pytest-datadir>=1.0,<2.0", "nox>=2022", ] -test = ["pytest>=7.0,<8.0", "pytest-cov>=3.0,<5.0", "pytest-datadir>=1.0,<2.0"] +test = ["pytest>=7.0,<9.0", "pytest-cov>=3.0,<5.0", "pytest-datadir>=1.0,<2.0"] [tool.pytest.ini_options] testpaths = ["tests"]