From 43757cedc280d386a4c00d3caea144b5309553ea Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 10:11:26 +0000 Subject: [PATCH 1/2] Update dependency containers/omlmd to v0.1.5 Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- container-images/ramalama/latest/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/container-images/ramalama/latest/Containerfile b/container-images/ramalama/latest/Containerfile index 4fd4c340..ebc4d507 100644 --- a/container-images/ramalama/latest/Containerfile +++ b/container-images/ramalama/latest/Containerfile @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi9/ubi:9.4-1214.1726694543 # renovate: datasource=github-releases depName=huggingface/huggingface_hub extractVersion=^v(?.*) ARG HUGGINGFACE_HUB_VERSION=0.25.1 # renovate: datasource=github-releases depName=containers/omlmd extractVersion=^v(?.*) -ARG OMLMD_VERSION=0.1.4 +ARG OMLMD_VERSION=0.1.5 # renovate: datasource=github-releases depName=tqdm/tqdm extractVersion=^v(?.*) ARG TQDM_VERSION=4.66.5 ARG LLAMA_CPP_SHA=70392f1f81470607ba3afef04aa56c9f65587664 From f2fc39a59ae8ad379905d7e25dcb5ca95e7373db Mon Sep 17 00:00:00 2001 From: tarilabs Date: Thu, 3 Oct 2024 14:49:37 +0200 Subject: [PATCH 2/2] deps: bumps omlmd to 0.1.5 adding support for chunked uploads pruned dependency tree, in preparation for formulae Signed-off-by: tarilabs --- Makefile | 2 +- install.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a183563b..e64a30a0 100644 --- a/Makefile +++ b/Makefile @@ -38,7 +38,7 @@ install-requirements: @pipx install -q black flake8 $(PYTHON) -m pip install --user -r requirements.txt pip install "huggingface_hub[cli]==0.25.1" - pip install "omlmd==0.1.4" + pip install "omlmd==0.1.5" .PHONY: install-completions: diff --git a/install.py b/install.py index 6e2ddfe9..5ea1c1ed 100755 --- a/install.py +++ b/install.py @@ -77,7 +77,7 @@ def check_platform(): def install_mac_dependencies(): subprocess.run(["pip3", "install", "huggingface_hub[cli]"], check=True) - subprocess.run(["pip3", "install", "omlmd==0.1.4"], check=True) + subprocess.run(["pip3", "install", "omlmd==0.1.5"], check=True) subprocess.run(["pip3", "install", "tqdm"], check=True) subprocess.run(["brew", "install", "llama.cpp"], check=True)