Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package_control/library.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ def convert_dependency(dependency_path, python_version, name, version, descripti
install_rel_paths.append(("st4_plat", "st4_py{}_{}".format(py, plat)))
# pure python releases releases for python 3.13+
if python_version == "3.13":
install_rel_paths.append(("st4_py", "st4_py313".format()))
install_rel_paths.append(("st4_py", "st4_py313"))
# pure python releases for python 3.8+
install_rel_paths.append(("st4_py", "st4_py38".format()))
install_rel_paths.append(("st4_py", "st4_py38"))
install_rel_paths.append(("st4", "st4"))

# platform/arch specific st3 dependencies are most likely only compatible with python 3.3
Expand Down
2 changes: 1 addition & 1 deletion package_control/sys_path.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def lib_paths():
data = (
("3.3", "python33", not settings.get('disable_plugin_host_3.3', False)),
("3.8", "python38", True),
("3.13", "python3.13", True),
("3.13", "python313", True),
)
lib_paths.cache = {
py_ver: os.path.join(__data_path, "Lib", py_dir)
Expand Down