From 03e46ca24d891e57263629aeef1ff2b7130dcbf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jan 2026 01:44:32 +0000 Subject: [PATCH 1/3] pip(deps): bump packaging from 25.0 to 26.0 Bumps [packaging](https://github.com/pypa/packaging) from 25.0 to 26.0. - [Release notes](https://github.com/pypa/packaging/releases) - [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pypa/packaging/compare/25.0...26.0) --- updated-dependencies: - dependency-name: packaging dependency-version: '26.0' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index db6064c..f000db9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -148,9 +148,9 @@ mdurl==0.1.2 \ --hash=sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8 \ --hash=sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba # via markdown-it-py -packaging==25.0 \ - --hash=sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484 \ - --hash=sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f +packaging==26.0 \ + --hash=sha256:00243ae351a257117b6a241061796684b084ed1c516a08c48a3f7e147a9d80b4 \ + --hash=sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 # via -r requirements.in pbr==6.1.1 \ --hash=sha256:38d4daea5d9fa63b3f626131b9d34947fd0c8be9b05a29276870580050a25a76 \ From 8dbd4a57f5fe22771b536aaaeff32a50efbba182 Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sun, 25 Jan 2026 17:54:00 -0800 Subject: [PATCH 2/3] black format src Signed-off-by: Eric Brown --- src/test/python_tests/lsp_test_client/constants.py | 1 + src/test/python_tests/lsp_test_client/utils.py | 1 + src/test/python_tests/test_server.py | 1 + 3 files changed, 3 insertions(+) diff --git a/src/test/python_tests/lsp_test_client/constants.py b/src/test/python_tests/lsp_test_client/constants.py index 882df6e..8f33e13 100644 --- a/src/test/python_tests/lsp_test_client/constants.py +++ b/src/test/python_tests/lsp_test_client/constants.py @@ -3,6 +3,7 @@ """ Constants for use with tests. """ + import pathlib TEST_ROOT = pathlib.Path(__file__).parent.parent diff --git a/src/test/python_tests/lsp_test_client/utils.py b/src/test/python_tests/lsp_test_client/utils.py index 8713c7b..3709066 100644 --- a/src/test/python_tests/lsp_test_client/utils.py +++ b/src/test/python_tests/lsp_test_client/utils.py @@ -3,6 +3,7 @@ """ Utility functions for use with tests. """ + import json import os import pathlib diff --git a/src/test/python_tests/test_server.py b/src/test/python_tests/test_server.py index b41e1a7..3e4f8d7 100644 --- a/src/test/python_tests/test_server.py +++ b/src/test/python_tests/test_server.py @@ -3,6 +3,7 @@ """ Test for linting over LSP. """ + from threading import Event from hamcrest import assert_that, is_ From a3e394cdda81db73767c2514cfa5a009962996fe Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sun, 25 Jan 2026 17:56:31 -0800 Subject: [PATCH 3/3] black format bundled Signed-off-by: Eric Brown --- bundled/tool/lsp_jsonrpc.py | 1 - bundled/tool/lsp_server.py | 1 + bundled/tool/lsp_utils.py | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bundled/tool/lsp_jsonrpc.py b/bundled/tool/lsp_jsonrpc.py index 8255206..c850253 100644 --- a/bundled/tool/lsp_jsonrpc.py +++ b/bundled/tool/lsp_jsonrpc.py @@ -2,7 +2,6 @@ # Licensed under the MIT License. """Light-weight JSON-RPC over standard IO.""" - import atexit import contextlib import io diff --git a/bundled/tool/lsp_server.py b/bundled/tool/lsp_server.py index 2c7ee9d..1fa867e 100644 --- a/bundled/tool/lsp_server.py +++ b/bundled/tool/lsp_server.py @@ -1,6 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. """Implementation of tool support over LSP.""" + from __future__ import annotations import copy diff --git a/bundled/tool/lsp_utils.py b/bundled/tool/lsp_utils.py index fb5f032..0179fff 100644 --- a/bundled/tool/lsp_utils.py +++ b/bundled/tool/lsp_utils.py @@ -1,6 +1,7 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. """Utility functions and classes for use with running tools over LSP.""" + from __future__ import annotations import contextlib