Skip to content

Commit 7c16241

Browse files
authored
chore: update crewai to 0.157.0 and crewai-tools dependency to version 0.60.0 (#3281)
* chore: update crewai-tools dependency to version 0.60.0 - Updated the `pyproject.toml` and `uv.lock` files to reflect the new version of `crewai-tools`. - This change ensures compatibility with the latest features and improvements in the tools package. * chore: bump CrewAI version to 0.157.0 - Updated the version in `__init__.py` to reflect the new release. - Adjusted dependency versions in `pyproject.toml` files for crew, flow, and tool templates to ensure compatibility with the latest features and improvements in CrewAI. - This change maintains consistency across the project and prepares for upcoming enhancements.
1 parent 8f4a6cc commit 7c16241

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.59.0"]
51+
tools = ["crewai-tools~=0.60.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
@@ -54,7 +54,7 @@ def _track_install_async():
5454

5555
_track_install_async()
5656

57-
__version__ = "0.152.0"
57+
__version__ = "0.157.0"
5858
__all__ = [
5959
"Agent",
6060
"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.152.0,<1.0.0"
8+
"crewai[tools]>=0.157.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.152.0,<1.0.0",
8+
"crewai[tools]>=0.157.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.152.0"
8+
"crewai[tools]>=0.157.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)