Skip to content

Commit ddcca1b

Browse files
committed
feat: support 3.14 env
1 parent e225763 commit ddcca1b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

plugin/dev_environment/impl/sublime_text.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,15 @@ def is_available(cls) -> bool:
8989
return 4200 >= ST_VERSION >= 4107
9090

9191

92-
class SublimeText313DevEnvironmentHandler(BaseVersionedSublimeTextDevEnvironmentHandler):
93-
"""This handler will just assume the project uses Python 3.13."""
92+
class SublimeText314DevEnvironmentHandler(BaseVersionedSublimeTextDevEnvironmentHandler):
93+
"""This handler will just assume the project uses Python 3.14."""
9494

95-
python_version = (3, 13)
96-
python_version_no_dot = "313"
95+
python_version = (3, 14)
96+
python_version_no_dot = "314"
9797

9898
@classmethod
9999
def is_available(cls) -> bool:
100-
return ST_VERSION >= 4201
100+
return ST_VERSION >= 4203
101101

102102

103103
def list_all_subclasses(

0 commit comments

Comments
 (0)