chore: auto release commit (2026-06-14 11:12:03)
All checks were successful
技能自动化发布 / release (push) Successful in 8s

This commit is contained in:
2026-06-14 11:12:04 +08:00
parent 955816c8a7
commit c7d7832749
20 changed files with 466 additions and 254 deletions

View File

@@ -83,16 +83,16 @@ class TestPlatformImportSource(unittest.TestCase):
)
)
def test_platform_kit_min_version_is_1_0_13(self) -> None:
def test_platform_kit_min_version_is_1_0_14(self) -> None:
from jiangchang_skill_core import version_ge
from util.constants import PLATFORM_KIT_MIN_VERSION
self.assertEqual(PLATFORM_KIT_MIN_VERSION, "1.0.13")
self.assertEqual(PLATFORM_KIT_MIN_VERSION, "1.0.14")
md_path = os.path.join(get_skill_root(), "SKILL.md")
with open(md_path, encoding="utf-8") as f:
md = f.read()
self.assertEqual(_parse_platform_kit_min_version(md), "1.0.13")
self.assertEqual(_parse_platform_kit_min_version(md), "1.0.14")
req_path = os.path.join(get_skill_root(), "requirements.txt")
with open(req_path, encoding="utf-8") as f: