We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e225763 commit ddcca1bCopy full SHA for ddcca1b
1 file changed
plugin/dev_environment/impl/sublime_text.py
@@ -89,15 +89,15 @@ def is_available(cls) -> bool:
89
return 4200 >= ST_VERSION >= 4107
90
91
92
-class SublimeText313DevEnvironmentHandler(BaseVersionedSublimeTextDevEnvironmentHandler):
93
- """This handler will just assume the project uses Python 3.13."""
+class SublimeText314DevEnvironmentHandler(BaseVersionedSublimeTextDevEnvironmentHandler):
+ """This handler will just assume the project uses Python 3.14."""
94
95
- python_version = (3, 13)
96
- python_version_no_dot = "313"
+ python_version = (3, 14)
+ python_version_no_dot = "314"
97
98
@classmethod
99
def is_available(cls) -> bool:
100
- return ST_VERSION >= 4201
+ return ST_VERSION >= 4203
101
102
103
def list_all_subclasses(
0 commit comments