From 90e1d9e3d685f4f6c54835f5092c88c6a252b61e Mon Sep 17 00:00:00 2001 From: Debanjum Singh Solanky Date: Mon, 16 Oct 2023 10:57:16 -0700 Subject: [PATCH] Pin gpt4all to 1.0.12 as next version will introduce breaking changes --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e6773b88..a52fc9b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -59,8 +59,8 @@ dependencies = [ "bs4 >= 0.0.1", "anyio == 3.7.1", "pymupdf >= 1.23.3", - "gpt4all >= 1.0.12; platform_system == 'Linux' and platform_machine == 'x86_64'", - "gpt4all >= 1.0.12; platform_system == 'Windows' or platform_system == 'Darwin'", + "gpt4all == 1.0.12; platform_system == 'Linux' and platform_machine == 'x86_64'", + "gpt4all == 1.0.12; platform_system == 'Windows' or platform_system == 'Darwin'", ] dynamic = ["version"]