Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This repository provides ~~dependency~~ library meta-data for Package Control 4.

Package Control 4 ships with default configuration to deploy libraries using this channel.

If you encounter any issues with libraries not being available for python 3.8 or 3.13,
If you encounter any issues with libraries not being available for Python 3.8, 3.13, or 3.14,
make sure the correct default channel is included in _Packages/User/Package Control.sublime-settings_.

see also: https://packages.sublimetext.io/about
Expand Down
62 changes: 55 additions & 7 deletions repository.json
Original file line number Diff line number Diff line change
Expand Up @@ -801,41 +801,89 @@
"author": "Yaroslav Ya",
"issues": "https://github.com/yaroslavyaroslav/llm_runner/issues",
"releases": [
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
Comment thread
deathaxe marked this conversation as resolved.
Outdated
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-macosx_*_arm64.whl",
"platforms": ["osx-arm64"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-macosx_*_arm64.whl",
"platforms": ["osx-arm64"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
},
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-macosx_*_x86_64.whl",
"platforms": ["osx-x64"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-macosx_*_x86_64.whl",
"platforms": ["osx-x64"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
},
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-musllinux*_aarch64.whl",
"platforms": ["linux-arm64"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-manylinux*_aarch64.whl",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-musllinux*_aarch64.whl",

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

All packages generally use manylinux platform as libc is also what ST's cpython interpreter uses. Mixing platforms may or may not have unwanted side effects.

"platforms": ["linux-arm64"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
},
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-manylinux*_x86_64.whl",
"platforms": ["linux-x64"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-manylinux*_x86_64.whl",
"platforms": ["linux-x64"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
},
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-win32.whl",
"platforms": ["windows-x32"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-win32.whl",
"platforms": ["windows-x32"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
},
{
"base": "https://pypi.org/project/llm-runner/0.2.14",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-win_amd64.whl",
"platforms": ["windows-x64"],
"python_versions": ["3.8", "3.13"],
"sublime_text": "4050 - 4204"
},
{
"base": "https://pypi.org/project/llm-runner",
"asset": "llm_runner-*-cp${py_version}-cp${py_version}-win_amd64.whl",
"platforms": ["windows-x64"],
"python_versions": ["3.8", "3.13", "3.14"]
"python_versions": ["3.14"],
"sublime_text": ">=4205"
}
]
},
Expand Down