From c9df6bf07b026be0cb817b6b80162919e5fd7705 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 04:16:11 +0000 Subject: [PATCH 1/2] deps(quantum-ml): update anyio requirement Updates the requirements on [anyio](https://github.com/agronholm/anyio) to permit the latest version. Updates `anyio` to 4.14.2 - [Release notes](https://github.com/agronholm/anyio/releases) - [Commits](https://github.com/agronholm/anyio/compare/4.14.1...4.14.2) --- updated-dependencies: - dependency-name: anyio dependency-version: 4.14.2 dependency-type: direct:production dependency-group: quantum-ml-deps ... Signed-off-by: dependabot[bot] --- ai-projects/quantum-ml/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ai-projects/quantum-ml/requirements.txt b/ai-projects/quantum-ml/requirements.txt index 77d7b5640..355379b63 100644 --- a/ai-projects/quantum-ml/requirements.txt +++ b/ai-projects/quantum-ml/requirements.txt @@ -38,7 +38,7 @@ black>=26.5.1,<27.0.0 # Model Context Protocol (MCP) Server mcp>=1.28.1 pydantic>=2.13.4 -anyio>=4.14.1 +anyio>=4.14.2 # (Removed) pip-check-duplicates was referenced but no distribution exists. # If dependency insight is needed, install pipdeptree instead: From 239ff11bfff79ebf1ea4ce326b06b65ddb686697 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 04:31:52 +0000 Subject: [PATCH 2/2] style: apply automated autofixes (ruff / prettier / clang-format) [CodeQL Advanced] --- .github/codeql/extensions/codeql-pack.yml | 1 - tests/test_workflow_lint_blockers.py | 1 - tests/test_workflow_yamllint_regressions.py | 5 +---- 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/codeql/extensions/codeql-pack.yml b/.github/codeql/extensions/codeql-pack.yml index 8b1378917..e69de29bb 100644 --- a/.github/codeql/extensions/codeql-pack.yml +++ b/.github/codeql/extensions/codeql-pack.yml @@ -1 +0,0 @@ - diff --git a/tests/test_workflow_lint_blockers.py b/tests/test_workflow_lint_blockers.py index 72cfb1418..43975f115 100644 --- a/tests/test_workflow_lint_blockers.py +++ b/tests/test_workflow_lint_blockers.py @@ -5,7 +5,6 @@ import pytest import yaml - pytestmark = pytest.mark.unit diff --git a/tests/test_workflow_yamllint_regressions.py b/tests/test_workflow_yamllint_regressions.py index ca4e34e28..b743e90ab 100644 --- a/tests/test_workflow_yamllint_regressions.py +++ b/tests/test_workflow_yamllint_regressions.py @@ -5,7 +5,6 @@ import pytest import yaml - REPO_ROOT = Path(__file__).resolve().parents[1] @@ -54,8 +53,6 @@ def test_ossar_workflow_steps_and_branch_spacing_regression() -> None: def test_summary_workflow_has_no_trailing_whitespace() -> None: content = _read(".github/workflows/summary.yml") trailing_ws_lines = [ - line_number - for line_number, line in enumerate(content.splitlines(), start=1) - if line != line.rstrip(" \t") + line_number for line_number, line in enumerate(content.splitlines(), start=1) if line != line.rstrip(" \t") ] assert not trailing_ws_lines, f"Trailing whitespace found on lines: {trailing_ws_lines}"