@@ -64,7 +64,7 @@ def _get_testable_interactive_backends():
64
64
# ignore on OSX because that's currently broken (github #16849)
65
65
marks .append (pytest .mark .xfail (reason = 'github #16849' ))
66
66
elif (env ['MPLBACKEND' ] == 'tkagg' and 'TF_BUILD' in os .environ and
67
- sys .platform == 'darwin' and sys .version_info [:2 ] == (3 , 10 )):
67
+ sys .platform == 'darwin' and sys .version_info [:2 ] < (3 , 11 )):
68
68
marks .append ( # https://github.com/actions/setup-python/issues/649
69
69
pytest .mark .xfail (reason = 'Tk version mismatch on Azure macOS CI' ))
70
70
envs .append (
@@ -272,7 +272,7 @@ def _test_thread_impl():
272
272
'https://foss.heptapod.net/pypy/pypy/-/issues/1929' ,
273
273
strict = True ))
274
274
elif (backend == 'tkagg' and 'TF_BUILD' in os .environ and
275
- sys .platform == 'darwin' and sys .version_info [:2 ] == (3 , 10 )):
275
+ sys .platform == 'darwin' and sys .version_info [:2 ] < (3 , 11 )):
276
276
param .marks .append ( # https://github.com/actions/setup-python/issues/649
277
277
pytest .mark .xfail ('Tk version mismatch on Azure macOS CI' ))
278
278
@@ -553,7 +553,7 @@ def _test_number_of_draws_script():
553
553
param .marks .append (
554
554
pytest .mark .skip ("wx does not support blitting" ))
555
555
elif (backend == 'tkagg' and 'TF_BUILD' in os .environ and
556
- sys .platform == 'darwin' and sys .version_info [:2 ] == (3 , 10 )):
556
+ sys .platform == 'darwin' and sys .version_info [:2 ] < (3 , 11 )):
557
557
param .marks .append ( # https://github.com/actions/setup-python/issues/649
558
558
pytest .mark .xfail ('Tk version mismatch on Azure macOS CI' )
559
559
)
0 commit comments