From 2a95132e5075e6844c567535b8c88fc0e8cc6c77 Mon Sep 17 00:00:00 2001 From: Jonxslays <51417989+Jonxslays@users.noreply.github.com> Date: Tue, 5 Apr 2022 13:50:36 -0700 Subject: [PATCH] Pin pytest to 7.0.1 for python 3.6 --- requirements-dev.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index dda236a..4a75842 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -26,7 +26,8 @@ codespell~=2.1.0 # Tests coverage~=6.3.2; python_version > "3.6" coverage~=6.2.0; python_version == "3.6" -pytest~=7.1.1 +pytest~=7.1.1; python_version > "3.6" +pytest~=7.0.1; python_version == "3.6" # Safety safety~=1.10.3; python_version < "3.11"