From 46ae55310f364c9a47da1dc9137e97e4dac144f5 Mon Sep 17 00:00:00 2001 From: leex279 Date: Sun, 19 Oct 2025 15:52:59 +0200 Subject: [PATCH] fix: add tldextract to all dependency group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tldextract package was missing from the 'all' dependency group, causing CI test failures. It was already in the 'server' group but needed in 'all' for running unit tests in CI/CD. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- python/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index ff4cf4ee..16b918eb 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -117,6 +117,7 @@ all = [ "cryptography>=41.0.0", "slowapi>=0.1.9", "docker>=6.1.0", + "tldextract>=5.0.0", "logfire>=0.30.0", # MCP specific (mcp version) "mcp==1.12.2",