From d3c775fb18d1f75ab8ce78a66713378135a9d8e1 Mon Sep 17 00:00:00 2001 From: Eric Gustin <34000337+EricGustin@users.noreply.github.com> Date: Tue, 3 Feb 2026 16:30:59 -0800 Subject: [PATCH] Actually deprecate langchain-arcade (#763) > [!NOTE] > **Low Risk** > Low risk packaging/dev tooling changes only: bumps the `langchain-arcade` package version and adds a simple `make install` helper, with no runtime logic changes. > > **Overview** > Updates the deprecated `langchain-arcade` package metadata by bumping `pyproject.toml` version from `2.0.0` to `2.0.1`. > > Adds a minimal `contrib/langchain/Makefile` with an `install` target that runs `uv sync` to standardize dependency setup. > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 823a66e1db9cd406a00ff0c3fe1b89b4f1b9f835. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --- contrib/langchain/Makefile | 4 ++++ contrib/langchain/pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 contrib/langchain/Makefile diff --git a/contrib/langchain/Makefile b/contrib/langchain/Makefile new file mode 100644 index 00000000..17e6a0ee --- /dev/null +++ b/contrib/langchain/Makefile @@ -0,0 +1,4 @@ +.PHONY: install + +install: + uv sync diff --git a/contrib/langchain/pyproject.toml b/contrib/langchain/pyproject.toml index f0fb2e1c..76c6c18a 100644 --- a/contrib/langchain/pyproject.toml +++ b/contrib/langchain/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "langchain-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"