From 168ac848d99484c44aafc492ad41750a994311fb Mon Sep 17 00:00:00 2001 From: craftsangjae Date: Mon, 16 Feb 2026 14:41:43 +0900 Subject: [PATCH] Update version to 0.2.1 and modify publish workflow to support multiple Python interpreters Signed-off-by: craftsangjae --- .github/workflows/publish.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ad2ad4b..b8fabbe 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -75,7 +75,7 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist + args: --release --out dist --interpreter 3.9 3.10 3.11 3.12 3.13 manylinux: auto - name: Upload wheels diff --git a/pyproject.toml b/pyproject.toml index c86afec..7e58b2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "muvera-python" -version = "0.2.0" +version = "0.2.1" description = "MuVERA: Multi-Vector Retrieval via Fixed Dimensional Encodings" readme = "README.md" license = "Apache-2.0"