fix: remove tools references temporarily for subtree add

This commit is contained in:
Greyson Lalonde
2025-09-12 21:57:57 -04:00
parent ff5cbdee07
commit a7f7b1bd68
2 changed files with 6 additions and 6 deletions

View File

@@ -48,7 +48,7 @@ Documentation = "https://docs.crewai.com"
Repository = "https://github.com/crewAIInc/crewAI"
[project.optional-dependencies]
tools = ["crewai-tools~=0.71.0"]
# tools = ["crewai-tools~=0.71.0"] # TODO: Re-enable after adding tools package
embeddings = [
"tiktoken~=0.8.0"
]

View File

@@ -17,9 +17,9 @@ Documentation = "https://docs.crewai.com"
Repository = "https://github.com/crewAIInc/crewAI"
[project.optional-dependencies]
tools = ["crewai-tools"]
# tools = ["crewai-tools"] # TODO: Re-enable after adding tools package
core = ["crewai-core"]
all = ["crewai-core", "crewai-tools"]
# all = ["crewai-core", "crewai-tools"] # TODO: Re-enable after adding tools package
# Core framework optional dependencies
embeddings = [
"tiktoken~=0.8.0"
@@ -118,7 +118,7 @@ exclude_dirs = ["packages/crewai/src/crewai/cli/templates"]
[tool.pytest.ini_options]
testpaths = [
"packages/crewai/tests",
"packages/tools/tests",
# "packages/tools/tests", # TODO: Add after subtree merge
]
markers = [
"telemetry: mark test as a telemetry test (don't mock telemetry)",
@@ -138,12 +138,12 @@ explicit = true
[tool.uv.workspace]
members = [
"packages/crewai",
"packages/tools",
# "packages/tools", # TODO: Add after subtree merge
]
[tool.uv.sources]
crewai-core = { workspace = true }
crewai-tools = { workspace = true }
# crewai-tools = { workspace = true } # TODO: Add after subtree merge
torch = [
{ index = "pytorch-nightly", marker = "python_version >= '3.13'" },
{ index = "pytorch", marker = "python_version < '3.13'" },