Skip to content

v0.12.2

Choose a tag to compare

@github-actions github-actions released this 24 May 11:22
· 140 commits to main since this release
1398445

Fixed

  • §6 MCP-parity exemption unreadable in CIis_mcp_parity_exempt
    resolved the audited package's repo root only via the ecosystem registry's
    fixed local_path (get_local_path). On CI runners that path does not
    exist (the package is editable-installed from $GITHUB_WORKSPACE), so a
    declared exemption (.scitex/dev/config.yaml audit.mcp-parity-exempt: true
    or pyproject [tool.scitex_dev] mcp_parity_exempt) was never read and §6
    fired for exempt packages (e.g. figrecipe's 74 matplotlib-mirror MCP tools)
    regardless of the checked-out config. _audited_repo_root now falls back to
    resolving the repo root from the installed tree via importlib.util .find_spec (mirroring audit-project's _resolve_repo_root), so the
    exemption is read from the tree actually being audited.