Skip to content

Commit 02c3bca

Browse files
authored
tkinter.tix was removed from Python 3.13, skip the test (#377)
1 parent 3b7efbc commit 02c3bca

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test_six.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,8 @@ def test_move_items(item_name):
136136
if item_name.startswith("tkinter"):
137137
if not have_tkinter:
138138
pytest.skip("requires tkinter")
139+
if item_name == "tkinter_tix" and sys.version_info >= (3, 13):
140+
pytest.skip("tkinter.tix removed from Python 3.13")
139141
if item_name == "dbm_gnu" and not have_gdbm:
140142
pytest.skip("requires gdbm")
141143
if item_name == "dbm_ndbm":

0 commit comments

Comments
 (0)