Skip to content

Commit

Permalink
Merge branch 'main' of github.com:containers/ramalama into containers
Browse files Browse the repository at this point in the history
  • Loading branch information
rhatdan committed Oct 3, 2024
2 parents 1fe7e4e + ef80dae commit 1d1251e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion container-images/ramalama/latest/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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(?<version>.*)
ARG HUGGINGFACE_HUB_VERSION=0.25.1
# renovate: datasource=github-releases depName=containers/omlmd extractVersion=^v(?<version>.*)
ARG OMLMD_VERSION=0.1.4
ARG OMLMD_VERSION=0.1.5
# renovate: datasource=github-releases depName=tqdm/tqdm extractVersion=^v(?<version>.*)
ARG TQDM_VERSION=4.66.5
ARG LLAMA_CPP_SHA=70392f1f81470607ba3afef04aa56c9f65587664
Expand Down
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 1d1251e

Please sign in to comment.