Skip to content

Commit 97c800e

Browse files
authored
Remove Python 3.11 condition since it's now the minimum Python version (#42)
1 parent 287bb3e commit 97c800e

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

cubed_xarray/tests/test_wrapping.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import sys
2-
31
import cubed
42
import numpy as np
53
import pytest
@@ -11,10 +9,7 @@
119

1210
from cubed_xarray.cubedmanager import CubedManager
1311

14-
EXECUTORS = [create_executor("single-threaded")]
15-
16-
if sys.version_info >= (3, 11):
17-
EXECUTORS.append(create_executor("processes"))
12+
EXECUTORS = [create_executor("single-threaded"), create_executor("processes")]
1813

1914

2015
@pytest.fixture(

0 commit comments

Comments
 (0)