From 676e62ff9c7c0651c5fdf9610e5f16cf75e4c931 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Sep 2022 11:46:28 +0000 Subject: [PATCH] Update pytest requirement from ==6.2.* to >=6.2,<7.2 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/6.2.0.dev0...7.1.3) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 57c82f4..529fca0 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ extras_require={ "test": [ 'pylint==2.10.*', - 'pytest==6.2.*', + 'pytest>=6.2,<7.2', 'pytest-cov==2.12.*', ] },