From 29ebccf80b28b95615dc157c25ddab93e27cb944 Mon Sep 17 00:00:00 2001 From: Marc Shade Date: Mon, 6 Apr 2026 14:39:38 -0400 Subject: [PATCH] Tighten pyproject.toml deps to match requirements.txt pins (mcp >=1.8, pydantic >=2.10, httpx with socks) --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 74707f3..31121e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,9 +11,9 @@ authors = [ keywords = ["mcp", "intelligence", "osint", "markets", "geopolitical", "phoenix"] dependencies = [ - "mcp>=1.0.0", - "httpx>=0.27.0", - "pydantic>=2.0.0", + "mcp>=1.8.0,<2.0.0", + "httpx[socks]>=0.27.0", + "pydantic>=2.10.0,<3.0.0", "feedparser>=6.0.0", "click>=8.1.0", "jinja2>=3.1.0",