summaryrefslogtreecommitdiff
path: root/dev-requirements.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dev-requirements.txt')
-rw-r--r--dev-requirements.txt13
1 files changed, 10 insertions, 3 deletions
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