diff options
| author | 2025-10-14 00:34:41 +0100 | |
|---|---|---|
| committer | 2025-10-14 00:34:41 +0100 | |
| commit | 1ab8fb9c236ea8621d25def0b1bd170de39ff923 (patch) | |
| tree | 663b184cc5fb39effc07323f8b2f01f879cba861 | |
| parent | Merge pull request #3408 from onerandomusername/patch-1 (diff) | |
Add 3.14j to SupportedPythonVersions
| -rw-r--r-- | bot/exts/utils/snekbox/_constants.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/snekbox/_constants.py b/bot/exts/utils/snekbox/_constants.py index ca4376b5f..fca200c79 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.14", "3.14t"] +SupportedPythonVersions = Literal["3.13", "3.14", "3.14t", "3.14j"]  DEFAULT_PYTHON_VERSION: SupportedPythonVersions = "3.14"  |