Skip to content

Commit f80c76a

Browse files
julienldclaude
andauthored
fix: exclude jq dependency on all Windows platforms (#371)
Fixes #357 - Windows installation failures due to jq compilation requirements The jq package requires C compilation which fails on Windows without Visual Studio Build Tools. The previous condition only excluded Windows ARM64, leaving x64 Windows still trying to compile jq. Changed the dependency condition to exclude jq on all Windows platforms. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 7751dd4 commit f80c76a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ classifiers = [
2626
dependencies = [
2727
"fastmcp>=2.11.0",
2828
"httpx>=0.27.0",
29-
'jq>=1.8.0; sys_platform != "win32" or platform_machine != "ARM64"',
29+
'jq>=1.8.0; sys_platform != "win32"',
3030
'textdistance[extras]>=4.6.0; platform_machine != "arm64" and platform_machine != "aarch64" and platform_machine != "ARM64"',
3131
'textdistance>=4.6.0; platform_machine == "arm64" or platform_machine == "aarch64" or platform_machine == "ARM64"',
3232
"pydantic>=2.5.0",

0 commit comments

Comments
 (0)