From e8762764af79428ff33a4e9537a0b8b0d6c78b03 Mon Sep 17 00:00:00 2001 From: Jens Troeger Date: Tue, 25 Oct 2022 08:44:04 -0700 Subject: [PATCH] fix: update pytest to drop dependency on vulnerable py package See also: https://github.com/pytest-dev/py/issues/287#issuecomment-1290407715 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8b12188d..a5c62bec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,9 +57,9 @@ hooks = [ # Note that the `custom_exit_code` and `env` plugins may currently be unmaintained. test = [ "hypothesis >=6.21.0,<=6.54.4", - "pytest >=7.1.2,<8.0.0", + "pytest >=7.2.0,<8.0.0", "pytest-custom_exit_code ==0.3.0", - "pytest-cov ==3.0.0", + "pytest-cov ==4.0.0", "pytest-env ==0.6.2", ]