Skip to content

Commit b5b10a8

Browse files
authored
chore: update version and dependencies to 0.201.0 (#3593)
- Bump CrewAI version to 0.201.0 in __init__.py - Update dependency versions in pyproject.toml for crew, flow, and tool templates to require CrewAI 0.201.0 - Remove unnecessary blank line in pyproject.toml
1 parent 2485ed9 commit b5b10a8

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,4 +196,3 @@ exclude = [
196196
"docs/**",
197197
"docs/",
198198
]
199-

src/crewai/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def filtered_warn(
4040

4141
_suppress_pydantic_deprecation_warnings()
4242

43-
__version__ = "0.193.2"
43+
__version__ = "0.201.0"
4444
_telemetry_submitted = False
4545

4646

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 = "[email protected]" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.193.2,<1.0.0"
8+
"crewai[tools]>=0.201.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 = "[email protected]" }]
66
requires-python = ">=3.10,<3.14"
77
dependencies = [
8-
"crewai[tools]>=0.193.2,<1.0.0",
8+
"crewai[tools]>=0.201.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.193.2"
8+
"crewai[tools]>=0.201.0"
99
]
1010

1111
[tool.crewai]

0 commit comments

Comments
 (0)