From 99079a844788f6b6d13dc5c16f27eb12439f944a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jun 2023 03:01:20 +0000 Subject: [PATCH 1/2] build(deps-dev): update pytest requirement 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.1...7.4.0) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aa113224..7402277a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dev = [ "pytest-console-scripts~=1.4.0", "pytest-cov~=4.1.0", "pytest-recording~=0.12.2", - "pytest~=7.3.1", + "pytest>=7.3.1,<7.5.0", "recommonmark~=0.7.1", "requests-mock~=1.11.0", "ruff==0.0.275", From 3203b1bfced640b1e4f13c1b5a51680059a9b990 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Mon, 26 Jun 2023 06:54:10 -0600 Subject: [PATCH 2/2] deps: use ~= for pytest --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7402277a..b7246135 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dev = [ "pytest-console-scripts~=1.4.0", "pytest-cov~=4.1.0", "pytest-recording~=0.12.2", - "pytest>=7.3.1,<7.5.0", + "pytest~=7.4", "recommonmark~=0.7.1", "requests-mock~=1.11.0", "ruff==0.0.275",