From cf282b5a32f662fb2bc68ecaa7b826e4692e803f Mon Sep 17 00:00:00 2001 From: Mateo Torres Date: Sun, 22 Feb 2026 01:01:14 +0000 Subject: [PATCH] actually deprecate the package (#779) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > [!NOTE] > **Low Risk** > Small metadata/build tooling change limited to a deprecated contrib package; no runtime or security-sensitive logic is modified. > > **Overview** > Marks the `crewai-arcade` contrib package as updated by bumping its `pyproject.toml` version from `2.0.0` to `2.0.1` (with deprecation messaging already in the project description). > > Adds a minimal `Makefile` with an `install` target that runs `uv sync` to simplify setting up the package’s environment. > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 85d7c42ca2fee85f677194e32ddbc2474b507e78. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --- contrib/crewai/Makefile | 4 ++++ contrib/crewai/pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 contrib/crewai/Makefile diff --git a/contrib/crewai/Makefile b/contrib/crewai/Makefile new file mode 100644 index 00000000..17e6a0ee --- /dev/null +++ b/contrib/crewai/Makefile @@ -0,0 +1,4 @@ +.PHONY: install + +install: + uv sync diff --git a/contrib/crewai/pyproject.toml b/contrib/crewai/pyproject.toml index 7c9d8644..b5e83201 100644 --- a/contrib/crewai/pyproject.toml +++ b/contrib/crewai/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "crewai-arcade" -version = "2.0.0" +version = "2.0.1" description = "This package is no longer maintained. Please visit https://docs.arcade.dev for the latest Arcade integrations." readme = "README.md" license = "MIT"