From 7aee50f445065ccf019ba6ee060e583aa1a387d6 Mon Sep 17 00:00:00 2001 From: Karan Vaidya Date: Mon, 5 Aug 2024 19:17:38 +0530 Subject: [PATCH] New release v0.4.1 --- python/composio/__init__.py | 2 +- python/dockerfiles/Dockerfile | 2 +- python/dockerfiles/Dockerfile.dev | 2 +- python/plugins/autogen/setup.py | 4 ++-- python/plugins/camel/setup.py | 4 ++-- python/plugins/claude/setup.py | 4 ++-- python/plugins/crew_ai/setup.py | 4 ++-- python/plugins/griptape/setup.py | 4 ++-- python/plugins/julep/setup.py | 4 ++-- python/plugins/langchain/setup.py | 4 ++-- python/plugins/langgraph/setup.py | 4 ++-- python/plugins/llamaindex/setup.py | 4 ++-- python/plugins/lyzr/setup.py | 4 ++-- python/plugins/openai/setup.py | 4 ++-- python/plugins/praisonai/setup.py | 4 ++-- python/setup.py | 2 +- python/swe/setup.py | 2 +- 17 files changed, 29 insertions(+), 29 deletions(-) diff --git a/python/composio/__init__.py b/python/composio/__init__.py index fef0382a73b..33162ee2944 100644 --- a/python/composio/__init__.py +++ b/python/composio/__init__.py @@ -37,4 +37,4 @@ "action", ) -__version__ = "0.4.0" +__version__ = "0.4.1" diff --git a/python/dockerfiles/Dockerfile b/python/dockerfiles/Dockerfile index f380bd8a2fe..b668f02d007 100644 --- a/python/dockerfiles/Dockerfile +++ b/python/dockerfiles/Dockerfile @@ -19,7 +19,7 @@ RUN /bin/python3 -m venv .composio/venv RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio -RUN python -m pip install composio-core[all]==0.4.0 fastapi playwright +RUN python -m pip install composio-core[all]==0.4.1 fastapi playwright uvicorn # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.dev b/python/dockerfiles/Dockerfile.dev index 59c7486dabe..ca83701ed3d 100644 --- a/python/dockerfiles/Dockerfile.dev +++ b/python/dockerfiles/Dockerfile.dev @@ -20,7 +20,7 @@ RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio for dependency caching # Install composio -RUN python -m pip install composio-core[all]==0.4.0 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.4.1 fastapi playwright uvicorn # Install playwright deps RUN playwright install-deps diff --git a/python/plugins/autogen/setup.py b/python/plugins/autogen/setup.py index a4dd7dd9fda..5c7e97794d1 100644 --- a/python/plugins/autogen/setup.py +++ b/python/plugins/autogen/setup.py @@ -9,7 +9,7 @@ setup( name="composio_autogen", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Autogen agent.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_core==0.4.0", "pyautogen>=0.2.19"], + install_requires=["composio_core==0.4.1", "pyautogen>=0.2.19"], include_package_data=True, ) diff --git a/python/plugins/camel/setup.py b/python/plugins/camel/setup.py index 3ab4849dd51..beb797c0507 100644 --- a/python/plugins/camel/setup.py +++ b/python/plugins/camel/setup.py @@ -9,7 +9,7 @@ setup( name="composio_camel", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Claude LLMs.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_core==0.4.0", "camel-ai>=0.1.5.7"], + install_requires=["composio_core==0.4.1", "camel-ai>=0.1.5.7"], include_package_data=True, ) diff --git a/python/plugins/claude/setup.py b/python/plugins/claude/setup.py index 2bdc84eda7c..77aed146fc5 100644 --- a/python/plugins/claude/setup.py +++ b/python/plugins/claude/setup.py @@ -9,7 +9,7 @@ setup( name="composio_claude", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Claude LLMs.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_openai==0.4.0", "anthropic>=0.25.7"], + install_requires=["composio_openai==0.4.1", "anthropic>=0.25.7"], include_package_data=True, ) diff --git a/python/plugins/crew_ai/setup.py b/python/plugins/crew_ai/setup.py index e6e0388517d..953840491dd 100644 --- a/python/plugins/crew_ai/setup.py +++ b/python/plugins/crew_ai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_crewai", - version="0.4.0", + version="0.4.1", author="Himanshu", author_email="himanshu@composio.dev", description="Use Composio to get an array of tools with your CrewAI agent.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_langchain==0.4.0", "crewai"], + install_requires=["composio_langchain==0.4.1", "crewai"], include_package_data=True, ) diff --git a/python/plugins/griptape/setup.py b/python/plugins/griptape/setup.py index 14a7a70e0a9..3c5471f2cba 100644 --- a/python/plugins/griptape/setup.py +++ b/python/plugins/griptape/setup.py @@ -9,7 +9,7 @@ setup( name="composio_griptape", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Griptape wokflow.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_core==0.4.0", "griptape>=0.24.2"], + install_requires=["composio_core==0.4.1", "griptape>=0.24.2"], include_package_data=True, ) diff --git a/python/plugins/julep/setup.py b/python/plugins/julep/setup.py index 6c2f4e60d36..ccd3f266318 100644 --- a/python/plugins/julep/setup.py +++ b/python/plugins/julep/setup.py @@ -9,7 +9,7 @@ setup( name="composio_julep", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Julep wokflow.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_openai==0.4.0", "julep>=0.3.2"], + install_requires=["composio_openai==0.4.1", "julep>=0.3.2"], include_package_data=True, ) diff --git a/python/plugins/langchain/setup.py b/python/plugins/langchain/setup.py index 04e14428832..0f9c3eca5c2 100644 --- a/python/plugins/langchain/setup.py +++ b/python/plugins/langchain/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langchain", - version="0.4.0", + version="0.4.1", author="Karan", author_email="karan@composio.dev", description="Use Composio to get an array of tools with your LangChain agent.", @@ -27,7 +27,7 @@ "langchain-openai>=0.0.2.post1", "pydantic>=2.6.4", "langchainhub>=0.1.15", - "composio_core==0.4.0", + "composio_core==0.4.1", ], include_package_data=True, ) diff --git a/python/plugins/langgraph/setup.py b/python/plugins/langgraph/setup.py index 490764fa64c..3487e40b586 100644 --- a/python/plugins/langgraph/setup.py +++ b/python/plugins/langgraph/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langgraph", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get array of tools with LnagGraph Agent Workflows", @@ -23,7 +23,7 @@ ], python_requires=">=3.9,<4", install_requires=[ - "composio_langchain==0.4.0", + "composio_langchain==0.4.1", "langgraph", ], include_package_data=True, diff --git a/python/plugins/llamaindex/setup.py b/python/plugins/llamaindex/setup.py index e75a7297046..f0584e4269d 100644 --- a/python/plugins/llamaindex/setup.py +++ b/python/plugins/llamaindex/setup.py @@ -9,7 +9,7 @@ setup( name="composio_llamaindex", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your LlamaIndex agent.", @@ -24,7 +24,7 @@ python_requires=">=3.9,<4", install_requires=[ "llama_index>=0.10.43", - "composio_langchain==0.4.0", + "composio_langchain==0.4.1", ], include_package_data=True, ) diff --git a/python/plugins/lyzr/setup.py b/python/plugins/lyzr/setup.py index 244e7f16cd2..46e3d111f1c 100644 --- a/python/plugins/lyzr/setup.py +++ b/python/plugins/lyzr/setup.py @@ -9,7 +9,7 @@ setup( name="composio_lyzr", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Lyzr workflow.", @@ -25,7 +25,7 @@ install_requires=[ "lyzr-automata>=0.1.3", "pydantic>=2.6.4", - "composio_core==0.4.0", + "composio_core==0.4.1", "langchain>=0.1.0", ], include_package_data=True, diff --git a/python/plugins/openai/setup.py b/python/plugins/openai/setup.py index 6838abf5c5d..e6e6cce8a95 100644 --- a/python/plugins/openai/setup.py +++ b/python/plugins/openai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_openai", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your OpenAI Function Call.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9,<4", - install_requires=["composio_core==0.4.0"], + install_requires=["composio_core==0.4.1"], include_package_data=True, ) diff --git a/python/plugins/praisonai/setup.py b/python/plugins/praisonai/setup.py index bf2f0e6ffef..08cb1b5894f 100644 --- a/python/plugins/praisonai/setup.py +++ b/python/plugins/praisonai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_praisonai", - version="0.4.0", + version="0.4.1", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio Tools to enhance your PraisonAI agents capabilities.", @@ -22,6 +22,6 @@ "Operating System :: OS Independent", ], python_requires=">=3.9", - install_requires=["composio_core==0.4.0", "PraisonAI>=0.0.2"], + install_requires=["composio_core==0.4.1", "PraisonAI>=0.0.2"], include_package_data=True, ) diff --git a/python/setup.py b/python/setup.py index 94b970ef371..53f78c9da81 100644 --- a/python/setup.py +++ b/python/setup.py @@ -72,7 +72,7 @@ def scan_for_package_data( setup( name="composio_core", - version="0.4.0", + version="0.4.1", author="Utkarsh", author_email="utkarsh@composio.dev", description="Core package to act as a bridge between composio platform and other services.", diff --git a/python/swe/setup.py b/python/swe/setup.py index fbc3295aff3..2e2107cb205 100644 --- a/python/swe/setup.py +++ b/python/swe/setup.py @@ -35,7 +35,7 @@ def scan_for_package_data( setup( name="swekit", - version="0.1.5", + version="0.1.6", author="Shubhra", author_email="shubhra@composio.dev", description="Tools for running a SWE agent using Composio platform",