From 7a1c6bce81d73534498395284f9c7323fee0a7df Mon Sep 17 00:00:00 2001 From: Aymeric Date: Fri, 20 Dec 2024 12:16:19 +0100 Subject: [PATCH] Downgrade minimum python version --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2bd2711..aaeacd9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "agents" version = "0.1.0" description = "Add your description here" readme = "README.md" -requires-python = ">=3.12" +requires-python = ">=3.9" dependencies = [ "transformers>=4.0.0", "pytest>=8.1.0", @@ -20,7 +20,8 @@ dependencies = [ "markdownify>=0.14.1", "gradio>=5.8.0", "duckduckgo-search>=6.3.7", - "python-dotenv>=1.0.1" + "python-dotenv>=1.0.1", + "e2b-code-interpreter>=1.0.3", ] [project.optional-dependencies] @@ -29,4 +30,4 @@ dev = [ ] test = [ "gradio-tools" -] \ No newline at end of file +]