Update ALL libs and their deps to most recent version of other libs (#716)
<!-- CURSOR_SUMMARY --> > [!NOTE] > Bumps versions across core libs and MCP packages, updates dependency constraints accordingly, and refreshes CLI template defaults to the new minimums. > > - **Versions**: > - `arcade-core` → `3.4.0` > - `arcade-serve` → `3.1.5` > - `arcade-tdk` → `3.2.2` > - `arcade-mcp-server` → `1.11.1` > - Root `arcade-mcp` → `1.5.8` > - **Dependency constraints**: > - Raise minimums to `arcade-core>=3.4.0`, `arcade-serve>=3.1.5`, `arcade-tdk>=3.2.2`, `arcade-mcp-server>=1.11.1` across affected `pyproject.toml` files. > - **CLI** (`libs/arcade-cli/arcade_cli/new.py`): > - Update template minimums for `arcade-mcp` (`1.5.8`), `arcade-tdk` (`3.2.2`), `arcade-serve` (`3.1.5`), and `arcade-mcp-server` (`1.11.1`). > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit b1b43e4d04810b0b49d4de6c943c23e69c99aad4. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
This commit is contained in:
parent
65acf41b11
commit
bdb7163313
6 changed files with 19 additions and 19 deletions
|
|
@ -19,14 +19,14 @@ try:
|
|||
ARCADE_MCP_MAX_VERSION = str(int(ARCADE_MCP_MIN_VERSION.split(".")[0]) + 1) + ".0.0"
|
||||
except Exception as e:
|
||||
console.print(f"[red]Failed to get arcade-mcp version: {e}[/red]")
|
||||
ARCADE_MCP_MIN_VERSION = "1.5.1" # Default version if unable to fetch
|
||||
ARCADE_MCP_MIN_VERSION = "1.5.8" # Default version if unable to fetch
|
||||
ARCADE_MCP_MAX_VERSION = "2.0.0"
|
||||
|
||||
ARCADE_TDK_MIN_VERSION = "3.0.0"
|
||||
ARCADE_TDK_MIN_VERSION = "3.2.2"
|
||||
ARCADE_TDK_MAX_VERSION = "4.0.0"
|
||||
ARCADE_SERVE_MIN_VERSION = "3.0.0"
|
||||
ARCADE_SERVE_MIN_VERSION = "3.1.5"
|
||||
ARCADE_SERVE_MAX_VERSION = "4.0.0"
|
||||
ARCADE_MCP_SERVER_MIN_VERSION = "1.7.2"
|
||||
ARCADE_MCP_SERVER_MIN_VERSION = "1.11.1"
|
||||
ARCADE_MCP_SERVER_MAX_VERSION = "2.0.0"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "arcade-core"
|
||||
version = "3.3.5"
|
||||
version = "3.4.0"
|
||||
description = "Arcade Core - Core library for Arcade platform"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "arcade-mcp-server"
|
||||
version = "1.11.0"
|
||||
version = "1.11.1"
|
||||
description = "Model Context Protocol (MCP) server framework for Arcade.dev"
|
||||
readme = "README.md"
|
||||
authors = [{ name = "Arcade.dev" }]
|
||||
|
|
@ -21,9 +21,9 @@ classifiers = [
|
|||
]
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"arcade-core>=3.3.5,<4.0.0",
|
||||
"arcade-serve>=3.0.0,<4.0.0",
|
||||
"arcade-tdk>=3.2.0,<4.0.0",
|
||||
"arcade-core>=3.4.0,<4.0.0",
|
||||
"arcade-serve>=3.1.5,<4.0.0",
|
||||
"arcade-tdk>=3.2.2,<4.0.0",
|
||||
"arcadepy>=1.5.0",
|
||||
"pydantic>=2.0.0",
|
||||
"fastapi>=0.100.0",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "arcade-serve"
|
||||
version = "3.1.4"
|
||||
version = "3.1.5"
|
||||
description = "Arcade Serve - Serving infrastructure for Arcade tools and workers"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
|
@ -19,7 +19,7 @@ classifiers = [
|
|||
]
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"arcade-core>=3.0.0,<4.0.0",
|
||||
"arcade-core>=3.4.0,<4.0.0",
|
||||
"fastapi>=0.115.3",
|
||||
"uvicorn>=0.30.0",
|
||||
"watchfiles>=1.0.5",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "arcade-tdk"
|
||||
version = "3.2.1"
|
||||
version = "3.2.2"
|
||||
description = "Arcade TDK - Toolkit Development Kit for building Arcade tools"
|
||||
readme = "README.md"
|
||||
license = {text = "MIT"}
|
||||
|
|
@ -19,7 +19,7 @@ classifiers = [
|
|||
]
|
||||
requires-python = ">=3.10"
|
||||
dependencies = [
|
||||
"arcade-core>=3.3.5,<4.0.0",
|
||||
"arcade-core>=3.4.0,<4.0.0",
|
||||
"pydantic>=2.7.0",
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "arcade-mcp"
|
||||
version = "1.5.7"
|
||||
version = "1.5.8"
|
||||
description = "Arcade.dev - Tool Calling platform for Agents"
|
||||
readme = "README.md"
|
||||
license = {file = "LICENSE"}
|
||||
|
|
@ -21,8 +21,8 @@ requires-python = ">=3.10"
|
|||
|
||||
dependencies = [
|
||||
# CLI dependencies
|
||||
"arcade-mcp-server>=1.7.2,<2.0.0",
|
||||
"arcade-core>=3.3.5,<4.0.0",
|
||||
"arcade-mcp-server>=1.11.1,<2.0.0",
|
||||
"arcade-core>=3.4.0,<4.0.0",
|
||||
"typer==0.10.0",
|
||||
"rich==13.9.4",
|
||||
"Jinja2==3.1.6",
|
||||
|
|
@ -42,11 +42,11 @@ all = [
|
|||
"pytz>=2024.1",
|
||||
"python-dateutil>=2.8.2",
|
||||
# mcp
|
||||
"arcade-mcp-server>=1.7.2,<2.0.0",
|
||||
"arcade-mcp-server>=1.11.1,<2.0.0",
|
||||
# serve
|
||||
"arcade-serve>=3.0.0,<4.0.0",
|
||||
"arcade-serve>=3.1.5,<4.0.0",
|
||||
# tdk
|
||||
"arcade-tdk>=3.2.0,<4.0.0",
|
||||
"arcade-tdk>=3.2.2,<4.0.0",
|
||||
]
|
||||
# Evals also depends on arcade-core and openai, but they are already required deps
|
||||
evals = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue