Skip to content

Commit 7c2f58f

Browse files
author
rishabh998186
committed
Your commit message
Signed-off-by: rishabh998186 <rishabh998186@gmail.com.com>
1 parent 4b7ef07 commit 7c2f58f

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.12
1+
3.13

go/cli/internal/agent/frameworks/crewai/python/templates/Dockerfile.tmpl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ FROM $DOCKER_REGISTRY/kagent-dev/kagent/kagent-adk:$VERSION
44

55
WORKDIR /app
66

7-
COPY {{.Name}}/ {{.Name}}/
8-
COPY pyproject.toml pyproject.toml
9-
COPY README.md README.md
7+
COPY .python-version .python-version
8+
COPY pyproject.toml pyproject.toml
9+
COPY README.md README.md
10+
COPY {{.Name}}/ {{.Name}}/
1011

1112
RUN uv sync
1213

go/cli/internal/agent/frameworks/crewai/python/templates/pyproject.toml.tmpl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@ name = "{{.Name}}"
33
version = "0.1.0"
44
description = "{{.Name}} agent using CrewAI"
55
readme = "README.md"
6-
requires-python = ">=3.12"
6+
requires-python = ">=3.13"
77
dependencies = [
88
"kagent-crewai",
99
"crewai>=0.86.0,<1.0.0",
1010
]
1111

12+
[tool.uv.sources]
13+
kagent-crewai = { workspace = true }
14+
kagent-core = { workspace = true }
15+
1216
[build-system]
1317
requires = ["setuptools>=61.0", "wheel"]
1418
build-backend = "setuptools.build_meta"

go/cli/internal/agent/frameworks/langgraph/python/templates/Dockerfile.tmpl

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ FROM $DOCKER_REGISTRY/kagent-dev/kagent/kagent-adk:$VERSION
44

55
WORKDIR /app
66

7-
COPY {{.Name}}/ {{.Name}}/
8-
COPY pyproject.toml pyproject.toml
9-
COPY README.md README.md
10-
COPY .python-version .python-version
7+
COPY .python-version .python-version
8+
COPY pyproject.toml pyproject.toml
9+
COPY README.md README.md
10+
COPY {{.Name}}/ {{.Name}}/
1111

1212
RUN uv sync
1313

1414
CMD ["{{.Name}}"]
15-

0 commit comments

Comments
 (0)