@@ -107,10 +107,6 @@ def test_dependency_steps(self):
107107 self .assertTrue (fs2 .done ())
108108 q .put ({"shutdown" : True , "wait" : True })
109109
110- @unittest .skipIf (
111- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
112- reason = "requires Python 3.11 or higher" ,
113- )
114110 def test_dependency_steps_error (self ):
115111 cloudpickle_register (ind = 1 )
116112 fs1 = Future ()
@@ -164,10 +160,6 @@ def test_dependency_steps_error(self):
164160 fs2 .result ()
165161 q .put ({"shutdown" : True , "wait" : True })
166162
167- @unittest .skipIf (
168- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
169- reason = "requires Python 3.11 or higher" ,
170- )
171163 def test_dependency_steps_error_before (self ):
172164 cloudpickle_register (ind = 1 )
173165 fs1 = Future ()
@@ -282,10 +274,6 @@ def test_block_allocation_true_two_workers(self):
282274 cloudpickle_register (ind = 1 )
283275 _ = exe .submit (raise_error , parameter = 0 )
284276
285- @unittest .skipIf (
286- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
287- reason = "requires Python 3.11 or higher" ,
288- )
289277 def test_block_allocation_false_one_worker_loop (self ):
290278 with self .assertRaises (RuntimeError ):
291279 with SingleNodeExecutor (max_cores = 1 , block_allocation = False ) as exe :
@@ -298,10 +286,6 @@ def test_block_allocation_false_one_worker_loop(self):
298286 )
299287 lst .result ()
300288
301- @unittest .skipIf (
302- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
303- reason = "requires Python 3.11 or higher" ,
304- )
305289 def test_block_allocation_true_one_worker_loop (self ):
306290 with self .assertRaises (RuntimeError ):
307291 with SingleNodeExecutor (max_cores = 1 , block_allocation = True ) as exe :
@@ -314,10 +298,6 @@ def test_block_allocation_true_one_worker_loop(self):
314298 )
315299 lst .result ()
316300
317- @unittest .skipIf (
318- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
319- reason = "requires Python 3.11 or higher" ,
320- )
321301 def test_block_allocation_false_two_workers_loop (self ):
322302 with self .assertRaises (RuntimeError ):
323303 with SingleNodeExecutor (max_cores = 2 , block_allocation = False ) as exe :
@@ -330,10 +310,6 @@ def test_block_allocation_false_two_workers_loop(self):
330310 )
331311 lst .result ()
332312
333- @unittest .skipIf (
334- condition = not (sys .version_info [0 ] >= 3 and sys .version_info [1 ] >= 11 ),
335- reason = "requires Python 3.11 or higher" ,
336- )
337313 def test_block_allocation_true_two_workers_loop (self ):
338314 with self .assertRaises (RuntimeError ):
339315 with SingleNodeExecutor (max_cores = 2 , block_allocation = True ) as exe :
0 commit comments