From 34ccbb7b7e590b7ab8452265124afcb15b2a61fe Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Mon, 2 Jan 2023 13:05:22 +0700 Subject: update dev-requirements pins pin 3.6 and then 3.7+ --- dev-requirements.txt | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'dev-requirements.txt') diff --git a/dev-requirements.txt b/dev-requirements.txt index 3ed9eb40..27068550 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,10 +1,17 @@ # Invocations for common project tasks invoke==1.6.0 invocations==2.6.0 -pytest==4.4.2 -pytest-relaxed==1.1.5 +# Pinning has some disadvantages when testing across multiple Python versions +# 3.6 specific pins +pytest==4.4.2;python_version=='3.6' +pytest-relaxed==1.1.5;python_version=='3.6' # pytest-xdist for test dir watching and the inv guard task -pytest-xdist==1.28.0 +pytest-xdist==1.28.0;python_version=='3.6' +# 3.7+ specific +pytest==7.2.0;python_version>='3.7' +pytest-xdist==3.1.0;python_version>='3.7' +pytest-relaxed==2.0.0;python_version>='3.7' + mock==2.0.0 # Linting! flake8==3.8.3 -- cgit v1.2.1