From 468b18c56db8ff9037b361b6950a1dca5fe72386 Mon Sep 17 00:00:00 2001 From: elliottower Date: Fri, 17 Nov 2023 19:42:47 -0500 Subject: [PATCH] Hard code gradio and pydantic versions (working locally now) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 00f44ae6..62a02845 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,15 +40,15 @@ cohere = ["cohere>=4.3.1"] huggingface = ["transformers>=4.27.4"] bard = ["bardapi==0.1.11"] langchain = ["langchain>=0.0.135"] -gradio = ["gradio>=3.34.0,<4.0.0"] +gradio = ["gradio==3.34.0", "pydantic==1.10.13"] pettingzoo = ["pettingzoo>=1.24.0", "chess==1.9.4", "rlcard==1.0.5", "pygame==2.3.0", "gymnasium>=0.28.1"] umshini = ["pettingzoo>=1.24.1", "gymnasium>=0.28.1", "langchain>=0.0.135", "colorama>=0.4.6"] all_backends = ["anthropic>=0.2.8", "cohere>=4.3.1", "transformers>=4.27.4", "bardapi==0.1.11", "langchain>=0.0.135"] all_envs = ["pettingzoo>=1.24.0", "chess==1.9.4", "rlcard==1.0.5", "pygame==2.3.0", "langchain>=0.0.135"] database = ["supabase==2.0.3"] testing = ["deptry>=0.12.0", "pytest>=7.4.3", "pytest-cov>=4.1.0", "pytest-xdist>=3.4.0"] -all = ["anthropic>=0.2.8", "cohere>=4.3.1", "transformers>=4.27.4", "gradio>=3.34.0,<4.0.0", "pettingzoo>=1.24.0", "chess==1.9.4", "rlcard==1.0.5", "pygame==2.3.0", "gymnasium>=0.28.1", +all = ["anthropic>=0.2.8", "cohere>=4.3.1", "transformers>=4.27.4", "gradio==3.34.0", "pydantic==1.10.13", "pettingzoo>=1.24.0", "chess==1.9.4", "rlcard==1.0.5", "pygame==2.3.0", "gymnasium>=0.28.1", "supabase==2.0.3", "bardapi==0.1.11", "langchain>=0.0.135", "deptry>=0.12.0", "pytest>=7.4.3", "pytest-cov>=4.1.0", "pytest-xdist>=3.4.0"] [tool.deptry.per_rule_ignores] -DEP002 = [ "pytest", "pytest-cov", "deptry", "pytest-xdist", "chess", "rlcard", "pygame"] +DEP002 = [ "pytest", "pytest-cov", "deptry", "pytest-xdist", "chess", "rlcard", "pygame", "pydantic"]