Skip to content
Draft
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
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",

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.

Only compatible releases are picked for each python version. If new versions of a library require py314+, latest available one will continue to be shipped for 38 and 313.

There should in general not be any requirement for version pinning, nor restricting "sublime_text" versions. The later might even be redundant with python_versions specifier.

"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",
"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