From: Michael R. Crusoe <crusoe@debian.org>
Subject: remove 30 seconds timeout, due to slower architectures

With Python version 3.13.x & 3.14.x we don't see any hangs
But on sparc64 with hit the timeout, so remove it

--- mypy.orig/mypyc/test/test_run.py
+++ mypy/mypyc/test/test_run.py
@@ -377,7 +377,7 @@
             stderr=subprocess.STDOUT,
             env=env,
         )
-        if sys.version_info >= (3, 12):
+        if sys.version_info >= (3, 12) and sys.version_info < (3, 13):
             # TODO: testDecorators1 hangs on 3.12, remove this once fixed
             proc.wait(timeout=30)
         output = proc.communicate()[0].decode("utf8")
