Skip to content

Commit c7a1e13

Browse files
committed
Sync abetlen/llama-cpp-python 0.3.12 code
1 parent 808459e commit c7a1e13

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/build-and-release.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ jobs:
7474
CIBW_SKIP: "*musllinux* pp*"
7575
CIBW_REPAIR_WHEEL_COMMAND: ""
7676
CIBW_ARCHS: "aarch64"
77+
CIBW_ENVIRONMENT: CMAKE_ARGS="-DCMAKE_OSX_ARCHITECTURES=arm64 -DCMAKE_APPLE_SILICON_PROCESSOR=arm64 -DCMAKE_CROSSCOMPILING=ON"
7778
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"
7879
with:
7980
output-dir: wheelhouse

.github/workflows/build-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
jobs:
1010
docker:
1111
name: Build and push Docker image
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.12]
11+
12+
- feat: Update llama.cpp to [ggml-org/llama.cpp@b8eeb8741d4483daf576498cf90537b4de71633c](https://github.com/ggml-org/llama.cpp/commit/b8eeb8741d4483daf576498cf90537b4de71633c)
13+
1014
## [0.3.11]
1115

1216
- fix: Update reference to `llama_kv_cache_clear` in Llama.embed. Closes #2037 by @abetlen in 9e5a4eaa84156084ed7bbb91e6efcc91dc6217bc

llama_cpp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .llama_cpp import *
22
from .llama import *
33

4-
__version__ = "0.3.11"
4+
__version__ = "0.3.12"

0 commit comments

Comments
 (0)