From 975939535cb18b74e28a90e7cef2f6e9314c5fad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=B4=E7=8C=AB?= Date: Sun, 15 Mar 2026 08:27:32 +0900 Subject: [PATCH] fix: align dependency-groups with r-dev to avoid TOML duplicate key r-dev already has [dependency-groups] with dev deps including pytest and pytest-asyncio. Our branch had a different structure causing a duplicate key error when merged. Align with r-dev's format. Co-Authored-By: Claude Opus 4.6 (1M context) --- pyproject.toml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b1f9060d..5307f355 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,12 +43,11 @@ dependencies = [ ] [dependency-groups] -test = [ - "pytest>=8.4.1", - "pytest-asyncio>=1.1.0", -] dev = [ - { include-group = "test" }, + "pytest", + "pytest-asyncio", + "ruff>=0.12.2", + "zstandard", ]