From 3c84d9b0b2819cb85560cdf0ab11b05423d5ffea Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 3 Apr 2025 17:59:52 -0400 Subject: [PATCH] chore: require pytest 6 consistently Signed-off-by: Henry Schreiner --- tests/pytest.ini | 2 +- tests/requirements.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/pytest.ini b/tests/pytest.ini index 42c3c40c63..ee4ddd5120 100644 --- a/tests/pytest.ini +++ b/tests/pytest.ini @@ -1,5 +1,5 @@ [pytest] -minversion = 3.10 +minversion = 6 norecursedirs = test_* extra_* xfail_strict = True addopts = diff --git a/tests/requirements.txt b/tests/requirements.txt index 0f6682cabb..58c732c916 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -8,7 +8,7 @@ numpy~=1.21.5; platform_python_implementation=="CPython" and python_version>="3. numpy~=1.22.2; platform_python_implementation=="CPython" and python_version=="3.10" numpy~=1.26.0; platform_python_implementation=="CPython" and python_version>="3.11" and python_version<"3.13" numpy~=2.2.0; platform_python_implementation=="CPython" and python_version=="3.13" -pytest>=7 +pytest>=6 pytest-timeout scipy~=1.5.4; platform_python_implementation=="CPython" and python_version<"3.10" scipy~=1.8.0; platform_python_implementation=="CPython" and python_version=="3.10" and sys_platform!="win32"