From 3a3f9ad0a2ccfb372d537278154fc592b661c945 Mon Sep 17 00:00:00 2001 From: Laurent Sorber Date: Tue, 17 Dec 2024 16:39:59 +0100 Subject: [PATCH] feat: add support for Python 3.12 --- .github/workflows/test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a0dba4..89bca28 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10", "3.11"] + python-version: ["3.10", "3.11", "3.12"] name: Python ${{ matrix.python-version }} diff --git a/README.md b/README.md index c59b667..c7caa4b 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ RAGLite is a Python toolkit for Retrieval-Augmented Generation (RAG) with Postgr > ```sh > # Configure which llama-cpp-python precompiled binary to install (⚠️ On macOS only v0.3.2 is supported right now): > LLAMA_CPP_PYTHON_VERSION=0.3.2 -> PYTHON_VERSION=310 +> PYTHON_VERSION=310|311|312 > ACCELERATOR=metal|cu121|cu122|cu123|cu124 > PLATFORM=macosx_11_0_arm64|linux_x86_64|win_amd64 >