aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2023-10-21 06:26:51 +0200
committerGitHub <noreply@github.com>2023-10-20 21:26:51 -0700
commit02c3bcab0b94eb7a86f6606bc8b02e3ee0a72860 (patch)
tree29a83b7999156c4374b7b1856d40eaf8a713548b
parent3b7efbcca41857da03fb01f004ccc425ab82dfbf (diff)
downloadsix-upstream-master.tar.gz
tkinter.tix was removed from Python 3.13, skip the test (#377)upstream-master
-rw-r--r--test_six.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test_six.py b/test_six.py
index 076b3eb..2fe78ee 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":