From c1762468c8ed5829c9b0aecd9f8e1d3e4e755167 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 21 Mar 2024 18:53:01 -0600 Subject: [PATCH] bump python to 3.10 to resolve langchain.schema issue from langchain.schema import BaseOutputParser (https://github.com/langchain-ai/langchain/issues/1936) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5dec5964..4b409e2e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ [tool.poetry.dependencies] -python = ">=3.9,<4.0" +python = ">=3.10,<4.0" torch = ">=2.1.1,<3.0" transformers = "*" asyncio = ">=3.4.3,<4.0"