Skip to content

Commit f0def35

Browse files
authored
chore: update crewAI and tools dependencies to latest versions (#3444)
- Updated `crewai-tools` dependency from version 0.65.0 to 0.69.0 in `pyproject.toml` and `uv.lock`. - Bumped crewAI version from 0.175.0 to 0.177.0 in `__init__.py`. - Updated dependency versions in CLI templates for crew, flow, and tool projects to reflect the new crewAI version.
1 parent f4f32b5 commit f0def35

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Documentation = "https://docs.crewai.com"
4848
Repository = "https://github.com/crewAIInc/crewAI"
4949

5050
[project.optional-dependencies]
51-
tools = ["crewai-tools~=0.65.0"]
51+
tools = ["crewai-tools~=0.69.0"]
5252
embeddings = [
5353
"tiktoken~=0.8.0"
5454
]

src/crewai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def _track_install_async() -> None:
7373

7474
_track_install_async()
7575

76-
__version__ = "0.175.0"
76+
__version__ = "0.177.0"
7777
__all__ = [
7878
"Agent",
7979
"Crew",

src/crewai/cli/templates/crew/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.175.0,<1.0.0"
8+
"crewai[tools]>=0.177.0,<1.0.0"
99
]
1010

1111
[project.scripts]

src/crewai/cli/templates/flow/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
55
authors = [{ name = "Your Name", email = "you@example.com" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.175.0,<1.0.0",
8+
"crewai[tools]>=0.177.0,<1.0.0",
99
]
1010

1111
[project.scripts]

src/crewai/cli/templates/tool/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}"
55
readme = "README.md"
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.175.0"
8+
"crewai[tools]>=0.177.0"
99
]
1010

1111
[tool.crewai]

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)