@@ -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 (
@@ -274,7 +274,7 @@ def _test_thread_impl():
274
274
'https://foss.heptapod.net/pypy/pypy/-/issues/1929' ,
275
275
strict = True ))
276
276
elif (backend == 'tkagg' and 'TF_BUILD' in os .environ and
277
- sys .platform == 'darwin' and sys .version_info [:2 ] == (3 , 10 )):
277
+ sys .platform == 'darwin' and sys .version_info [:2 ] < (3 , 11 )):
278
278
param .marks .append ( # https://github.com/actions/setup-python/issues/649
279
279
pytest .mark .xfail ('Tk version mismatch on Azure macOS CI' ))
280
280
@@ -547,7 +547,7 @@ def _test_number_of_draws_script():
547
547
param .marks .append (
548
548
pytest .mark .skip ("wx does not support blitting" ))
549
549
elif (backend == 'tkagg' and 'TF_BUILD' in os .environ and
550
- sys .platform == 'darwin' and sys .version_info [:2 ] == (3 , 10 )):
550
+ sys .platform == 'darwin' and sys .version_info [:2 ] < (3 , 11 )):
551
551
param .marks .append ( # https://github.com/actions/setup-python/issues/649
552
552
pytest .mark .xfail ('Tk version mismatch on Azure macOS CI' )
553
553
)
0 commit comments