aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2025-10-10 19:20:14 +0100
committerGravatar Joe Banks <[email protected]>2025-10-10 19:20:14 +0100
commitb2714a4fa3f850d170f4ad8fd4e7b74c39c99849 (patch)
treed889c99a8e756dfc137a738c1e5b685f45c9c6c6
parentUse last character of Python version to determine free threading (diff)
Update 3.13t to 3.14t
See python-discord/snekbox#246 for relevant snekbox changes
-rw-r--r--bot/exts/utils/snekbox/_constants.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/snekbox/_constants.py b/bot/exts/utils/snekbox/_constants.py
index 09f94170b..ca4376b5f 100644
--- a/bot/exts/utils/snekbox/_constants.py
+++ b/bot/exts/utils/snekbox/_constants.py
@@ -19,6 +19,6 @@ SNEKBOX_ROLES = (Roles.helpers, Roles.moderators, Roles.admins, Roles.owners, Ro
REDO_EMOJI = "\U0001f501" # :repeat:
REDO_TIMEOUT = 30
-SupportedPythonVersions = Literal["3.13", "3.13t", "3.14"]
+SupportedPythonVersions = Literal["3.13", "3.14", "3.14t"]
DEFAULT_PYTHON_VERSION: SupportedPythonVersions = "3.14"