From 02c3bcab0b94eb7a86f6606bc8b02e3ee0a72860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 21 Oct 2023 06:26:51 +0200 Subject: [PATCH] tkinter.tix was removed from Python 3.13, skip the test (#377) --- test_six.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_six.py b/test_six.py index 076b3eb0..2fe78eef 100644 --- a/test_six.py +++ b/test_six.py @@ -136,6 +136,8 @@ def test_move_items(item_name): if item_name.startswith("tkinter"): if not have_tkinter: pytest.skip("requires tkinter") + if item_name == "tkinter_tix" and sys.version_info >= (3, 13): + pytest.skip("tkinter.tix removed from Python 3.13") if item_name == "dbm_gnu" and not have_gdbm: pytest.skip("requires gdbm") if item_name == "dbm_ndbm":