diff --git a/Justfile b/Justfile index 7be2797..ac8f28e 100644 --- a/Justfile +++ b/Justfile @@ -53,7 +53,7 @@ test: lint mypy pytest # Audit dependencies for security vulnerabilities [group("Security")] audit: - uvx uv-secure uv.lock + uv audit --frozen --preview-features audit # Build mkdocs site [group("docs")] diff --git a/pyproject.toml b/pyproject.toml index 39553d3..f69fc6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -130,13 +130,3 @@ disallow_untyped_defs = true [tool.ty.environment] root = ["."] python = "./.venv" - -[tool.uv-secure.vulnerability_criteria] -show_severity = true -ignore_unfixed = true - -[tool.uv-secure.maintainability_criteria] -forbid_yanked = true -forbid_archived = true -forbid_deprecated = true -forbid_quarantined = true