From a290ce626663dae1d54f70bce3ca6d8f67aab62f Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Wed, 6 May 2026 15:46:14 +0300 Subject: [PATCH] gguf-py : bump version to 0.19.0 (#22664) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gguf-py : bump version to 0.19.0 * bump poetry --------- Co-authored-by: Sigbjørn Skjæret --- .github/workflows/gguf-publish.yml | 2 +- gguf-py/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gguf-publish.yml b/.github/workflows/gguf-publish.yml index a1fba046a..fb8eab3cd 100644 --- a/.github/workflows/gguf-publish.yml +++ b/.github/workflows/gguf-publish.yml @@ -29,10 +29,10 @@ jobs: uses: actions/setup-python@v6 with: python-version: '3.11' + pip-install: poetry==2.4.0 - name: Install dependencies run: | cd gguf-py - python -m pip install poetry==2.3.2 poetry install - name: Build package diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml index 8a0783e64..b2a36460a 100644 --- a/gguf-py/pyproject.toml +++ b/gguf-py/pyproject.toml @@ -1,8 +1,8 @@ [project] name = "gguf" +version = "0.19.0" description = "Read and write ML models in GGUF for GGML" keywords = ["ggml", "gguf", "llama.cpp"] -version = "0.18.0" dynamic = ["classifiers"] readme = "README.md" authors = [{name = "GGML", email = "ggml@ggml.ai"}]