From 4be6493f8703e3dbdd0f8b1c8d1c3df594927738 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 03:07:02 +0000 Subject: [PATCH 1/2] Bump the pip group with 3 updates Bumps the pip group with 3 updates: [ast-grep-py](https://github.com/ast-grep/ast-grep), [pygls](https://github.com/openlawlibrary/pygls) and [ruff](https://github.com/astral-sh/ruff). Updates `ast-grep-py` from 0.39.6 to 0.39.7 - [Release notes](https://github.com/ast-grep/ast-grep/releases) - [Changelog](https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md) - [Commits](https://github.com/ast-grep/ast-grep/compare/0.39.6...0.39.7) Updates `pygls` from 1.3.1 to 2.0.0 - [Release notes](https://github.com/openlawlibrary/pygls/releases) - [Changelog](https://github.com/openlawlibrary/pygls/blob/main/CHANGELOG.md) - [Commits](https://github.com/openlawlibrary/pygls/compare/v1.3.1...v2.0.0) Updates `ruff` from 0.13.2 to 0.14.3 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.13.2...0.14.3) --- updated-dependencies: - dependency-name: ast-grep-py dependency-version: 0.39.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: pip - dependency-name: pygls dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: pip - dependency-name: ruff dependency-version: 0.14.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: pip ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 18c8e45..0f7130b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "auto-typing-final" description = "Automagically set typing.Final inside your functions" authors = [{ name = "Lev Vereshchagin", email = "mail@vrslev.com" }] -dependencies = ["ast-grep-py==0.39.6", "pygls==1.3.1"] +dependencies = ["ast-grep-py==0.39.7", "pygls==2.0.0"] requires-python = ">=3.10" readme = "README.md" license = { text = "MIT" } @@ -23,7 +23,7 @@ auto-typing-final = "auto_typing_final.main:main" auto-typing-final-lsp-server = "auto_typing_final.lsp:main" [dependency-groups] -dev = ["mypy==1.18.2", "pytest==8.4.2", "pytest-cov==7.0.0", "ruff==0.13.2"] +dev = ["mypy==1.18.2", "pytest==8.4.2", "pytest-cov==7.0.0", "ruff==0.14.3"] [build-system] requires = ["hatchling", "hatch-vcs"] From c61f5b9ca88b97de8850284bf9216d898ea03d7e Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Sat, 1 Nov 2025 16:04:02 +0300 Subject: [PATCH 2/2] Downgrade pygls dependency from 2.0.0 to 1.3.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0f7130b..dad37f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "auto-typing-final" description = "Automagically set typing.Final inside your functions" authors = [{ name = "Lev Vereshchagin", email = "mail@vrslev.com" }] -dependencies = ["ast-grep-py==0.39.7", "pygls==2.0.0"] +dependencies = ["ast-grep-py==0.39.7", "pygls==1.3.1"] requires-python = ">=3.10" readme = "README.md" license = { text = "MIT" }