From 5672d858093de3d9f0ff0ee7069161b494e80479 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Sat, 30 Oct 2021 20:47:21 +0300 Subject: [PATCH] Require pytest>=6.2 This makes things much easier in terms of typing. pytest 6.2 has been out for a ~year so if someone updates pytest-xdist they should also update pytest! Fix #720. --- changelog/720.trivial.rst | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog/720.trivial.rst diff --git a/changelog/720.trivial.rst b/changelog/720.trivial.rst new file mode 100644 index 00000000..ee671cbb --- /dev/null +++ b/changelog/720.trivial.rst @@ -0,0 +1 @@ +Require pytest>=6.2.0. diff --git a/setup.cfg b/setup.cfg index ad5a0eb9..a80ac39c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -38,7 +38,7 @@ zip_safe = False python_requires = >=3.6 install_requires = execnet>=1.1 - pytest>=6.0.0 + pytest>=6.2.0 pytest-forked setup_requires = setuptools_scm>=6.0