Skip to content

Commit 7b0f3aa

Browse files
authored
chore: update crewAI and dependencies to version 0.141.0 and 0.51.0 (#3128)
- Bump crewAI version to 0.141.0 in __init__.py for alignment with updated dependencies. - Update `crewai-tools` dependency version to 0.51.0 in pyproject.toml and related template files. - Add new testing dependencies: pytest-split and pytest-xdist for improved test execution. - Ensure compatibility with the latest package versions in uv.lock and template files.
1 parent f071966 commit 7b0f3aa

File tree

6 files changed

+61
-9
lines changed

6 files changed

+61
-9
lines changed

pyproject.toml

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

4949
[project.optional-dependencies]
50-
tools = ["crewai-tools~=0.49.0"]
50+
tools = ["crewai-tools~=0.51.0"]
5151
embeddings = [
5252
"tiktoken~=0.8.0"
5353
]

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.140.0"
57+
__version__ = "0.141.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.140.0,<1.0.0"
8+
"crewai[tools]>=0.141.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.140.0,<1.0.0",
8+
"crewai[tools]>=0.141.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.140.0"
8+
"crewai[tools]>=0.141.0"
99
]
1010

1111
[tool.crewai]

0 commit comments

Comments
 (0)