Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kaavee315 committed Apr 6, 2024
1 parent 42ad223 commit 51f558a
Show file tree
Hide file tree
Showing 12 changed files with 29 additions and 28 deletions.
4 changes: 2 additions & 2 deletions autogen/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[project]
dynamic = ["classifiers", "version", "readme", "authors", "requires-python", "description"]
dependencies = [
"composio_core===0.1.71",
"pyautogen===0.2.19"
"composio_core===0.1.72",
"pyautogen>=0.2.19"
]
name = "composio_autogen"

Expand Down
4 changes: 2 additions & 2 deletions autogen/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
composio_core===0.1.71
pyautogen===0.2.19
composio_core===0.1.72
pyautogen>=0.2.19
2 changes: 1 addition & 1 deletion autogen/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def resolve_paths(*paths):

setup(
name="composio_autogen",
version="0.1.71",
version="0.1.72",
author="Sawradip",
author_email="sawradip@composio.dev",
description="Use Composio to get an array of tools with your Autogen agent.",
Expand Down
8 changes: 4 additions & 4 deletions core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ dependencies = [
"requests",
"jsonschema",
"argparse",
"beaupy===3.7.2",
"termcolor==2.4.0",
"pydantic==2.6.4",
"openai==1.14.1"
"beaupy>=3.7.2",
"termcolor>=2.4.0",
"pydantic>=2.6.4",
"openai>=1.14.1"
]
name = "composio_core"

Expand Down
9 changes: 5 additions & 4 deletions core/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
requests
jsonschema
argparse
beaupy==3.7.2
termcolor==2.4.0
pydantic==2.6.4
openai==1.14.1
beaupy>=3.7.2
termcolor>=2.4.0
pydantic>=2.6.4
openai>=1.14.1

2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def run(self):

setup(
name="composio_core",
version="0.1.71",
version="0.1.72",
author="Utkarsh",
author_email="utkarsh@composio.dev",
description="Core package to act as a bridge between composio platform and other services.",
Expand Down
2 changes: 1 addition & 1 deletion crew_ai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
dynamic = ["classifiers", "version", "readme", "authors", "requires-python", "description"]
dependencies = [
"composio_langchain===0.1.71",
"composio_langchain===0.1.72",
]
name = "composio_crewai"

Expand Down
2 changes: 1 addition & 1 deletion crew_ai/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
composio_langchain===0.1.71
composio_langchain===0.1.72
2 changes: 1 addition & 1 deletion crew_ai/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def resolve_paths(*paths):

setup(
name="composio_crewai",
version="0.1.71",
version="0.1.72",
author="Himanshu",
author_email="himanshu@composio.dev",
description="Use Composio to get an array of tools with your CrewAI agent.",
Expand Down
10 changes: 5 additions & 5 deletions langchain/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ dependencies = [
"jsonschema",
"argparse",
"nest_asyncio",
"langchain===0.1.0",
"langchain-openai===0.0.2.post1",
"langchainhub==0.1.15",
"pydantic===2.6.4",
"composio_core===0.1.71"
"langchain>=0.1.0",
"langchain-openai>=0.0.2.post1",
"langchainhub>=0.1.15",
"pydantic>=2.6.4",
"composio_core===0.1.72"
]
name = "composio_langchain"

Expand Down
10 changes: 5 additions & 5 deletions langchain/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
langchain===0.1.0
langchain-openai===0.0.2.post1
pydantic===2.6.4
langchainhub==0.1.15
composio_core===0.1.71
langchain>=0.1.0
langchain-openai>=0.0.2.post1
pydantic>=2.6.4
langchainhub>=0.1.15
composio_core===0.1.72
2 changes: 1 addition & 1 deletion langchain/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def resolve_paths(*paths):

setup(
name="composio_langchain",
version="0.1.71",
version="0.1.72",
author="Karan",
author_email="karan@composio.dev",
description="Use Composio to get an array of tools with your LangChain agent.",
Expand Down

0 comments on commit 51f558a

Please sign in to comment.