From a7f7b1bd68a1e8207bd60bf01cc7b203e80b18a3 Mon Sep 17 00:00:00 2001 From: Greyson Lalonde Date: Fri, 12 Sep 2025 21:57:57 -0400 Subject: [PATCH] fix: remove tools references temporarily for subtree add --- packages/crewai/pyproject.toml | 2 +- pyproject.toml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/crewai/pyproject.toml b/packages/crewai/pyproject.toml index 6c9c3640a..f863a2f89 100644 --- a/packages/crewai/pyproject.toml +++ b/packages/crewai/pyproject.toml @@ -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" ] diff --git a/pyproject.toml b/pyproject.toml index 5a57b1a11..076c30fda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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'" },