Skip to content

Commit

Permalink
Release v0.5.47 (#900)
Browse files Browse the repository at this point in the history
<!-- ELLIPSIS_HIDDEN -->



> [!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`.
> 
> <sup>This description was created by </sup>[<img alt="Ellipsis"
src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=ComposioHQ%2Fcomposio&utm_source=github&utm_medium=referral)<sup>
for db2c215. It will automatically
update as commits are pushed.</sup>

<!-- ELLIPSIS_HIDDEN -->
  • Loading branch information
angrybayblade authored Nov 25, 2024
1 parent 0b5fc7f commit 6f75bba
Show file tree
Hide file tree
Showing 21 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion python/composio/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.46"
__version__ = "0.5.47"
2 changes: 1 addition & 1 deletion python/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/dockerfiles/Dockerfile.computer
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/dockerfiles/Dockerfile.computer.dev
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion python/dockerfiles/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/autogen/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_autogen",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Autogen agent.",
Expand All @@ -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",
],
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/camel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_camel",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Claude LLMs.",
Expand All @@ -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",
],
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/claude/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_claude",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Claude LLMs.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/crew_ai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_crewai",
version="0.5.46",
version="0.5.47",
author="Himanshu",
author_email="[email protected]",
description="Use Composio to get an array of tools with your CrewAI agent.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/google/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_google",
version="0.5.46",
version="0.5.47",
author="Assistant",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Google AI Python Gemini model.",
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/griptape/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_griptape",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Griptape wokflow.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/julep/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_julep",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Julep wokflow.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/langchain/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_langchain",
version="0.5.46",
version="0.5.47",
author="Karan",
author_email="[email protected]",
description="Use Composio to get an array of tools with your LangChain agent.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/langgraph/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_langgraph",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get array of tools with LnagGraph Agent Workflows",
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/llamaindex/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_llamaindex",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your LlamaIndex agent.",
Expand All @@ -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,
)
4 changes: 2 additions & 2 deletions python/plugins/lyzr/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_lyzr",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Lyzr workflow.",
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/openai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_openai",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your OpenAI Function Call.",
Expand All @@ -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,
)
6 changes: 3 additions & 3 deletions python/plugins/phidata/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_phidata",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio to get an array of tools with your Phidata Plugin.",
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions python/plugins/praisonai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="composio_praisonai",
version="0.5.46",
version="0.5.47",
author="Sawradip",
author_email="[email protected]",
description="Use Composio Tools to enhance your PraisonAI agents capabilities.",
Expand All @@ -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,
)
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
description="Core package to act as a bridge between composio platform and other services.",
Expand Down
6 changes: 3 additions & 3 deletions python/swe/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def scan_for_package_data(

setup(
name="swekit",
version="0.2.44",
version="0.2.45",
author="Shubhra",
author_email="[email protected]",
description="Tools for running a SWE agent using Composio platform",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
]
},
Expand Down

0 comments on commit 6f75bba

Please sign in to comment.