Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@ dependencies = [
"boto3>=1.34.0",
"langsmith>=0.7.30",
"yara-python>=4.5.0",
# Python 3.14 compat: jsonschema-rs (pulled in transitively via
# langgraph-cli[inmem] -> langgraph-api) only ships prebuilt cp314 wheels
# continuously from 0.40.4 onward. Releases 0.35.0-0.40.3 have no cp314
# wheels, so an unlocked fresh resolve could pick one and be force-built
# from source against an outdated pyo3 that does not support 3.14, breaking
# the install. langgraph-api caps jsonschema-rs at <0.45, so >=0.40.4 keeps
# a 3.14-compatible wheel while staying within the cap.
"jsonschema-rs>=0.40.4",
]

[project.optional-dependencies]
Expand Down
1 change: 1 addition & 0 deletions src/skillspector/mcp_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
from skillspector.logging_config import get_logger
from skillspector.suppression import effective_findings


Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Restore the import block required by Ruff

This extra blank line splits the TYPE_CHECKING import from the import block, and the current required lint job fails with Ruff I001 here. Remove the extra line (or run ruff check --fix) so the head is lint-clean.

if TYPE_CHECKING:
from mcp.server.fastmcp import FastMCP

Expand Down
4 changes: 3 additions & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading