diff --git a/python/composio/__init__.py b/python/composio/__init__.py index 7ab5136c2e6..23b06a28770 100644 --- a/python/composio/__init__.py +++ b/python/composio/__init__.py @@ -51,6 +51,6 @@ "LogLevel", ) -__version__ = "0.5.39" +__version__ = "0.5.40" atexit.register(create_latest_version_warning_hook(version=__version__)) diff --git a/python/dockerfiles/Dockerfile b/python/dockerfiles/Dockerfile index f7d8ebd11e1..4a0d154baf1 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.37-rc.1 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.5.40 fastapi playwright uvicorn # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.computer b/python/dockerfiles/Dockerfile.computer index e5244ed1ee6..d434d3fc5d6 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.35-rc.1 fastapi playwright uvicorn pyautogui +RUN python3 -m pip install composio-core[all]==0.5.40 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 332cde5a58d..1718ba4e8e8 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.35-rc.1 fastapi playwright uvicorn pyautogui +RUN python3 -m pip install composio-core[all]==0.5.40 fastapi playwright uvicorn pyautogui # Install playwright deps RUN playwright install-deps diff --git a/python/dockerfiles/Dockerfile.dev b/python/dockerfiles/Dockerfile.dev index 9194c586c3a..050d5925433 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.37-rc.1 fastapi playwright uvicorn +RUN python -m pip install composio-core[all]==0.5.40 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 6ed345565da..bb766af06bd 100644 --- a/python/plugins/autogen/setup.py +++ b/python/plugins/autogen/setup.py @@ -9,7 +9,7 @@ setup( name="composio_autogen", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", "pyautogen>=0.2.19", "flaml==2.2.0", ], diff --git a/python/plugins/camel/setup.py b/python/plugins/camel/setup.py index 04fa8ab05d2..d0a20625b94 100644 --- a/python/plugins/camel/setup.py +++ b/python/plugins/camel/setup.py @@ -9,7 +9,7 @@ setup( name="composio_camel", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", "camel-ai>=0.1.5.7", "pillow", ], diff --git a/python/plugins/claude/setup.py b/python/plugins/claude/setup.py index 021b517b968..51e940b3f5b 100644 --- a/python/plugins/claude/setup.py +++ b/python/plugins/claude/setup.py @@ -9,7 +9,7 @@ setup( name="composio_claude", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", "anthropic>=0.25.7"], + install_requires=["composio_openai>=0.5.30,<=0.5.40", "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 58627635987..ddd12f617de 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.39", + version="0.5.40", 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.30,<=0.5.39", "crewai"], + install_requires=["composio_langchain>=0.5.30,<=0.5.40", "crewai"], include_package_data=True, ) diff --git a/python/plugins/google/setup.py b/python/plugins/google/setup.py index 6a5e43b3fcb..434cbfb84f6 100644 --- a/python/plugins/google/setup.py +++ b/python/plugins/google/setup.py @@ -9,7 +9,7 @@ setup( name="composio_google", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", "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 06d4a6d2c20..e2c4eea3cc3 100644 --- a/python/plugins/griptape/setup.py +++ b/python/plugins/griptape/setup.py @@ -9,7 +9,7 @@ setup( name="composio_griptape", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", "griptape>=0.24.2"], + install_requires=["composio_core>=0.5.30,<=0.5.40", "griptape>=0.24.2"], include_package_data=True, ) diff --git a/python/plugins/julep/setup.py b/python/plugins/julep/setup.py index 55a2fb6b2b7..7f79db2df97 100644 --- a/python/plugins/julep/setup.py +++ b/python/plugins/julep/setup.py @@ -9,7 +9,7 @@ setup( name="composio_julep", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", "julep>=0.3.2"], + install_requires=["composio_openai>=0.5.30,<=0.5.40", "julep>=0.3.2"], include_package_data=True, ) diff --git a/python/plugins/langchain/setup.py b/python/plugins/langchain/setup.py index 85956f5dba6..85e83615d13 100644 --- a/python/plugins/langchain/setup.py +++ b/python/plugins/langchain/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langchain", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", ], include_package_data=True, ) diff --git a/python/plugins/langgraph/setup.py b/python/plugins/langgraph/setup.py index 8574f69eb28..ddc2388453b 100644 --- a/python/plugins/langgraph/setup.py +++ b/python/plugins/langgraph/setup.py @@ -9,7 +9,7 @@ setup( name="composio_langgraph", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_langchain>=0.5.30,<=0.5.40", "langgraph", ], include_package_data=True, diff --git a/python/plugins/llamaindex/setup.py b/python/plugins/llamaindex/setup.py index a6e6b04fe1e..19554e0fd11 100644 --- a/python/plugins/llamaindex/setup.py +++ b/python/plugins/llamaindex/setup.py @@ -9,7 +9,7 @@ setup( name="composio_llamaindex", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", ], include_package_data=True, ) diff --git a/python/plugins/lyzr/setup.py b/python/plugins/lyzr/setup.py index 2615bc552b2..2e628827774 100644 --- a/python/plugins/lyzr/setup.py +++ b/python/plugins/lyzr/setup.py @@ -9,7 +9,7 @@ setup( name="composio_lyzr", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", "langchain>=0.1.0", ], include_package_data=True, diff --git a/python/plugins/openai/setup.py b/python/plugins/openai/setup.py index afb8ab76a0a..23698d05e75 100644 --- a/python/plugins/openai/setup.py +++ b/python/plugins/openai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_openai", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", "openai"], + install_requires=["composio_core>=0.5.30,<=0.5.40", "openai"], include_package_data=True, ) diff --git a/python/plugins/phidata/setup.py b/python/plugins/phidata/setup.py index 99fbb61e722..11d24f26a03 100644 --- a/python/plugins/phidata/setup.py +++ b/python/plugins/phidata/setup.py @@ -9,7 +9,7 @@ setup( name="composio_phidata", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", - "composio_openai>=0.5.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", + "composio_openai>=0.5.30,<=0.5.40", "phidata", ], include_package_data=True, diff --git a/python/plugins/praisonai/setup.py b/python/plugins/praisonai/setup.py index 40bf91e2cb2..ca7ecc319ce 100644 --- a/python/plugins/praisonai/setup.py +++ b/python/plugins/praisonai/setup.py @@ -9,7 +9,7 @@ setup( name="composio_praisonai", - version="0.5.39", + version="0.5.40", 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.30,<=0.5.39", "PraisonAI>=0.0.2"], + install_requires=["composio_core>=0.5.30,<=0.5.40", "PraisonAI>=0.0.2"], include_package_data=True, ) diff --git a/python/setup.py b/python/setup.py index 8cdcc30e2d8..86ffe47ae73 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.39", + version="0.5.40", 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 afe3254bc10..f431371d4b0 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.37", + version="0.2.38", 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.30,<=0.5.39", + "composio_core>=0.5.30,<=0.5.40", "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.30,<=0.5.39", + "composio_langgraph>=0.5.30,<=0.5.40", "python-dotenv==1.0.1", ] },