fix(devtools): point template bumper at lib/cli templates dir

This commit is contained in:
Greyson LaLonde
2026-06-02 02:02:12 -07:00
committed by GitHub
parent 3010f1286f
commit fee5b3e395
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.14.5a2"
"crewai[tools]==1.14.6"
]
[project.scripts]

View File

@@ -5,7 +5,7 @@ description = "{{name}} using crewAI"
authors = [{ name = "Your Name", email = "you@example.com" }]
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.14.5a2"
"crewai[tools]==1.14.6"
]
[project.scripts]

View File

@@ -5,7 +5,7 @@ description = "Power up your crews with {{folder_name}}"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"crewai[tools]==1.14.5a2"
"crewai[tools]==1.14.6"
]
[tool.crewai]

View File

@@ -918,7 +918,7 @@ def _update_all_versions(
"[yellow]Warning:[/yellow] No __version__ attributes found to update"
)
templates_dir = lib_dir / "crewai" / "src" / "crewai" / "cli" / "templates"
templates_dir = lib_dir / "cli" / "src" / "crewai_cli" / "templates"
if templates_dir.exists():
if dry_run:
for tpl in templates_dir.rglob("pyproject.toml"):