Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pip install --extra-index-url https://artlab.alibaba-inc.com/1/pypi/simple "rl-r

The MCP extra currently supports Python 3.11 and 3.12 because the published
ScaffoldHub package is Python 3.11+ and ROCK officially supports Python 3.10 to
3.12. The MCP extra depends on `scaffoldhub>=0.1.6`.
3.12. The MCP extra depends on `scaffoldhub>=0.1.12`.

## Basic Usage

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
authors = [{ name = "chatos@alibaba" }]
requires-python = "<4.0,>=3.10"
name = "rl-rock"
version = "1.11.0.dev2026071515"
version = "1.11.0.dev2026071518"
description = "ROCK-Reinforcement Open Construction Kit"
readme = "README.md"
dependencies = [
Expand Down Expand Up @@ -49,7 +49,7 @@ admin = [
"boto3",
"ray[default]==2.43.0",
"pip",
"cryptography==39.0.1",
"cryptography>=41.0",
"fakeredis[json]",
"kubernetes>=35.0.0", # For K8S operator support
"aiolimiter>=1.2.1", # For rate limiting
Expand Down Expand Up @@ -93,7 +93,7 @@ model-service = [
]

mcp = [
"scaffoldhub>=0.1.6; python_version >= '3.11' and python_version < '3.13'",
"scaffoldhub>=0.1.12; python_version >= '3.11' and python_version < '3.13'",
]


Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sdk/mcp/test_packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_mcp_extra_declares_scaffoldhub_dependency():

mcp_dependencies = pyproject["project"]["optional-dependencies"]["mcp"]

assert "scaffoldhub>=0.1.6; python_version >= '3.11' and python_version < '3.13'" in mcp_dependencies
assert "scaffoldhub>=0.1.12; python_version >= '3.11' and python_version < '3.13'" in mcp_dependencies


def test_scaffoldhub_resolves_from_artlab_index():
Expand Down
Loading
Loading