From 414f78a3c253495d175a7ace34e35c4c0b503a87 Mon Sep 17 00:00:00 2001 From: Tom White Date: Mon, 19 Jan 2026 12:02:49 +0000 Subject: [PATCH] Remove Python 3.11 condition since it's now the minimum Python version --- cubed_xarray/tests/test_wrapping.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cubed_xarray/tests/test_wrapping.py b/cubed_xarray/tests/test_wrapping.py index 78ee5e8..e21c245 100644 --- a/cubed_xarray/tests/test_wrapping.py +++ b/cubed_xarray/tests/test_wrapping.py @@ -1,5 +1,3 @@ -import sys - import cubed import numpy as np import pytest @@ -11,10 +9,7 @@ from cubed_xarray.cubedmanager import CubedManager -EXECUTORS = [create_executor("single-threaded")] - -if sys.version_info >= (3, 11): - EXECUTORS.append(create_executor("processes")) +EXECUTORS = [create_executor("single-threaded"), create_executor("processes")] @pytest.fixture(