From 1ca26d99f75a1f5f068e41fc104900e2b531ee21 Mon Sep 17 00:00:00 2001 From: haosenwang1018 Date: Tue, 24 Feb 2026 21:45:08 +0000 Subject: [PATCH] fix: move pytest from runtime dependencies to test extras pytest>=9.0.2 was listed in [project.dependencies], causing it to be installed for all users. It's already correctly listed under [project.optional-dependencies.test] as pytest>=8.0.0. Remove from main dependencies since it's only needed for development. Fixes #93 --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 48908035..599ee22f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,7 +23,6 @@ dependencies = [ "google-genai>=1.56.0", "openai>=2.14.0", "portkey-ai>=2.1.0", - "pytest>=9.0.2", "python-dotenv>=1.2.1", "requests>=2.32.5", "rich>=13.0.0",