aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2024-10-07 19:54:10 +0100
committerGravatar Chris Lovering <[email protected]>2024-10-07 19:54:55 +0100
commit516c986cccab86542704ece841699700f409b201 (patch)
tree7e8f62327f432b83a7a2d76cab9739e72373460c
parentDynamically build eval switcher buttons based on supported versions (diff)
Add support for 3.13t in eval
-rw-r--r--bot/exts/utils/snekbox/_cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/snekbox/_cog.py b/bot/exts/utils/snekbox/_cog.py
index 2b990ab1d..5c83f4feb 100644
--- a/bot/exts/utils/snekbox/_cog.py
+++ b/bot/exts/utils/snekbox/_cog.py
@@ -86,7 +86,7 @@ SNEKBOX_ROLES = (Roles.helpers, Roles.moderators, Roles.admins, Roles.owners, Ro
REDO_EMOJI = "\U0001f501" # :repeat:
REDO_TIMEOUT = 30
-SupportedPythonVersions = Literal["3.12", "3.13"]
+SupportedPythonVersions = Literal["3.12", "3.13", "3.13t"]
class FilteredFiles(NamedTuple):