From 6f75bbab97ab1b7011dfce8272233af509124e14 Mon Sep 17 00:00:00 2001 From: Viraj <35092918+angrybayblade@users.noreply.github.com> Date: Mon, 25 Nov 2024 11:59:18 +0530 Subject: [PATCH] Release `v0.5.47` (#900) > [!IMPORTANT] > Update `composio` package and dependencies to version `0.5.47` across multiple files and plugins. > > - **Version Update**: > - Update `__version__.py` to `0.5.47`. > - Update `composio-core` version to `0.5.47` in `Dockerfile`, `Dockerfile.computer`, `Dockerfile.computer.dev`, and `Dockerfile.dev`. > - Update version to `0.5.47` in `setup.py` for plugins: `autogen`, `camel`, `claude`, `crew_ai`, `google`, `griptape`, `julep`, `langchain`, `langgraph`, `llamaindex`, `lyzr`, `openai`, `phidata`, `praisonai`, and `swe`. > - **Dependency Update**: > - Update `composio_core` dependency to `<=0.5.47` in `setup.py` for plugins: `autogen`, `camel`, `crew_ai`, `google`, `griptape`, `langchain`, `llamaindex`, `lyzr`, `openai`, `phidata`, `praisonai`, and `swe`. > - Update `composio_openai` dependency to `<=0.5.47` in `setup.py` for plugins: `claude`, `julep`, and `phidata`. > - Update `composio_langgraph` dependency to `<=0.5.47` in `swe/setup.py`. > > This description was created by [Ellipsis](https://www.ellipsis.dev?ref=ComposioHQ%2Fcomposio&utm_source=github&utm_medium=referral) for db2c215fe93a643fadf7585128bf5f4be67b2a05. It will automatically update as commits are pushed. --- python/composio/__version__.py | 2 +- python/dockerfiles/Dockerfile | 2 +- python/dockerfiles/Dockerfile.computer | 2 +- python/dockerfiles/Dockerfile.computer.dev | 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/google/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/phidata/setup.py | 6 +++--- python/plugins/praisonai/setup.py | 4 ++-- python/setup.py | 2 +- python/swe/setup.py | 6 +++--- 21 files changed, 38 insertions(+), 38 deletions(-) diff --git a/python/composio/__version__.py b/python/composio/__version__.py index 021b192a77a..de62a0a6768 100644 --- a/python/composio/__version__.py +++ b/python/composio/__version__.py @@ -1 +1 @@ -__version__ = "0.5.46" +__version__ = "0.5.47" diff --git a/python/dockerfiles/Dockerfile b/python/dockerfiles/Dockerfile index a76034363c6..27e7f513f11 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.5.46 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.5.47 fastapi playwright uvicorn # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.computer b/python/dockerfiles/Dockerfile.computer index 1117c17f2e7..444e636e464 100644 --- a/python/dockerfiles/Dockerfile.computer +++ b/python/dockerfiles/Dockerfile.computer @@ -64,7 +64,7 @@ RUN /bin/python3 -m venv .composio/venv RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio -RUN python3 -m pip install composio-core[all]==0.5.46 fastapi playwright uvicorn pyautogui +RUN python3 -m pip install composio-core[all]==0.5.47 fastapi playwright uvicorn pyautogui # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.computer.dev b/python/dockerfiles/Dockerfile.computer.dev index d8e592be553..c5d65dedffe 100644 --- a/python/dockerfiles/Dockerfile.computer.dev +++ b/python/dockerfiles/Dockerfile.computer.dev @@ -70,7 +70,7 @@ RUN /bin/python3 -m venv .composio/venv RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio -RUN python3 -m pip install composio-core[all]==0.5.46 fastapi playwright uvicorn pyautogui +RUN python3 -m pip install composio-core[all]==0.5.47 fastapi playwright uvicorn pyautogui # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.dev b/python/dockerfiles/Dockerfile.dev index 8bfc42087e4..676bdeb603f 100644 --- a/python/dockerfiles/Dockerfile.dev +++ b/python/dockerfiles/Dockerfile.dev @@ -19,7 +19,7 @@ RUN /bin/python3 -m venv .composio/venv RUN export PATH=$PATH:$(pwd)/.composio/venv/bin # Install composio for dependency caching -RUN python -m pip install composio-core[all]==0.5.46 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.5.47 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 d4b9606f2b3..8268c925651 100644 --- a/python/plugins/autogen/setup.py +++ b/python/plugins/autogen/setup.py @@ -9,7 +9,7 @@ setup( name="composio_autogen", - version="0.5.46", + version="0.5.47", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Autogen agent.", @@ -23,7 +23,7 @@ ], python_requires=">=3.9,<4", install_requires=[ - "composio_core>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", "pyautogen>=0.2.19", "flaml==2.2.0", ], diff --git a/python/plugins/camel/setup.py b/python/plugins/camel/setup.py index 2b16d38aaf4..148faca7985 100644 --- a/python/plugins/camel/setup.py +++ b/python/plugins/camel/setup.py @@ -9,7 +9,7 @@ setup( name="composio_camel", - version="0.5.46", + version="0.5.47", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Claude LLMs.", @@ -23,7 +23,7 @@ ], python_requires=">=3.9,<4", install_requires=[ - "composio_core>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", "camel-ai>=0.1.5.7,<=0.2.2", "pillow", ], diff --git a/python/plugins/claude/setup.py b/python/plugins/claude/setup.py index 2d45fce8eb2..1182fb66bb5 100644 --- a/python/plugins/claude/setup.py +++ b/python/plugins/claude/setup.py @@ -9,7 +9,7 @@ setup( name="composio_claude", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "anthropic>=0.25.7"], + install_requires=["composio_openai>=0.5.40,<=0.5.47", "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 698a8703971..8965249eab3 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.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "crewai>=0.51.0,<=0.75.0"], + install_requires=["composio_langchain>=0.5.40,<=0.5.47", "crewai>=0.51.0,<=0.75.0"], include_package_data=True, ) diff --git a/python/plugins/google/setup.py b/python/plugins/google/setup.py index 3d3851ad270..f08b5c7680f 100644 --- a/python/plugins/google/setup.py +++ b/python/plugins/google/setup.py @@ -9,7 +9,7 @@ setup( name="composio_google", - version="0.5.46", + version="0.5.47", author="Assistant", author_email="karan@composio.dev", description="Use Composio to get an array of tools with your Google AI Python Gemini model.", @@ -23,7 +23,7 @@ ], python_requires=">=3.9,<4", install_requires=[ - "composio_core>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", "google-cloud-aiplatform>=1.38.0", ], include_package_data=True, diff --git a/python/plugins/griptape/setup.py b/python/plugins/griptape/setup.py index 91552667032..1077319254e 100644 --- a/python/plugins/griptape/setup.py +++ b/python/plugins/griptape/setup.py @@ -9,7 +9,7 @@ setup( name="composio_griptape", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "griptape>=0.24.2"], + install_requires=["composio_core>=0.5.40,<=0.5.47", "griptape>=0.24.2"], include_package_data=True, ) diff --git a/python/plugins/julep/setup.py b/python/plugins/julep/setup.py index 99ae4f310b4..6f4bf0084d7 100644 --- a/python/plugins/julep/setup.py +++ b/python/plugins/julep/setup.py @@ -9,7 +9,7 @@ setup( name="composio_julep", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "julep>=0.3.2"], + install_requires=["composio_openai>=0.5.40,<=0.5.47", "julep>=0.3.2"], include_package_data=True, ) diff --git a/python/plugins/langchain/setup.py b/python/plugins/langchain/setup.py index c3c0d2e6e61..c367038015f 100644 --- a/python/plugins/langchain/setup.py +++ b/python/plugins/langchain/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langchain", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", ], include_package_data=True, ) diff --git a/python/plugins/langgraph/setup.py b/python/plugins/langgraph/setup.py index 8831b6fa7a9..e052bc548c0 100644 --- a/python/plugins/langgraph/setup.py +++ b/python/plugins/langgraph/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langgraph", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", + "composio_langchain>=0.5.40,<=0.5.47", "langgraph", ], include_package_data=True, diff --git a/python/plugins/llamaindex/setup.py b/python/plugins/llamaindex/setup.py index edcf03a6ec7..3ac7eb6ca96 100644 --- a/python/plugins/llamaindex/setup.py +++ b/python/plugins/llamaindex/setup.py @@ -9,7 +9,7 @@ setup( name="composio_llamaindex", - version="0.5.46", + version="0.5.47", 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_core>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", ], include_package_data=True, ) diff --git a/python/plugins/lyzr/setup.py b/python/plugins/lyzr/setup.py index d5ff1524d11..fd54c13d9c7 100644 --- a/python/plugins/lyzr/setup.py +++ b/python/plugins/lyzr/setup.py @@ -9,7 +9,7 @@ setup( name="composio_lyzr", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", "langchain>=0.1.0", ], include_package_data=True, diff --git a/python/plugins/openai/setup.py b/python/plugins/openai/setup.py index 8412869ce09..ced78a6be03 100644 --- a/python/plugins/openai/setup.py +++ b/python/plugins/openai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_openai", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "openai"], + install_requires=["composio_core>=0.5.40,<=0.5.47", "openai"], include_package_data=True, ) diff --git a/python/plugins/phidata/setup.py b/python/plugins/phidata/setup.py index ccfe7ce7105..7479e947fc7 100644 --- a/python/plugins/phidata/setup.py +++ b/python/plugins/phidata/setup.py @@ -9,7 +9,7 @@ setup( name="composio_phidata", - version="0.5.46", + version="0.5.47", author="Sawradip", author_email="sawradip@composio.dev", description="Use Composio to get an array of tools with your Phidata Plugin.", @@ -23,8 +23,8 @@ ], python_requires=">=3.9,<4", install_requires=[ - "composio_core>=0.5.40,<=0.5.46", - "composio_openai>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", + "composio_openai>=0.5.40,<=0.5.47", "phidata", ], include_package_data=True, diff --git a/python/plugins/praisonai/setup.py b/python/plugins/praisonai/setup.py index 0f8fc0dab94..775a73ef4da 100644 --- a/python/plugins/praisonai/setup.py +++ b/python/plugins/praisonai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_praisonai", - version="0.5.46", + version="0.5.47", 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.5.40,<=0.5.46", "PraisonAI>=0.0.2"], + install_requires=["composio_core>=0.5.40,<=0.5.47", "PraisonAI>=0.0.2"], include_package_data=True, ) diff --git a/python/setup.py b/python/setup.py index a024896ed34..2bfa1b87d95 100644 --- a/python/setup.py +++ b/python/setup.py @@ -90,7 +90,7 @@ def scan_for_package_data( setup( name="composio_core", - version="0.5.46", + version="0.5.47", 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 a5337028bb9..a9fabd138a7 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.2.44", + version="0.2.45", author="Shubhra", author_email="shubhra@composio.dev", description="Tools for running a SWE agent using Composio platform", @@ -66,7 +66,7 @@ def scan_for_package_data( "swebench==2.1.0", "datasets>=2.20.0", "gitpython>=3.1.43", - "composio_core>=0.5.40,<=0.5.46", + "composio_core>=0.5.40,<=0.5.47", "unidiff==0.7.5", "tqdm==4.66.4", "rich", @@ -75,7 +75,7 @@ def scan_for_package_data( "langgraph": [ "langchain-aws==0.1.17", "langgraph>=0.2.16", - "composio_langgraph>=0.5.40,<=0.5.46", + "composio_langgraph>=0.5.40,<=0.5.47", "python-dotenv==1.0.1", ] },