From 3e5e86736cc0ca6c8fa6e725347b22021f9af9ce Mon Sep 17 00:00:00 2001 From: nikromen <70757578+nikromen@users.noreply.github.com> Date: Wed, 1 Jan 2025 06:39:31 +0100 Subject: [PATCH] support python 3.13.x (#97) Fixes `error="Failed to find a python3 installation in PATH that meets the required versions (<3.13,>=3.8.0). Found version: 3.13.1."` traceback. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cade71b..3c47610 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ dependencies = [ "pygls>=1.1.1", ] -requires-python = ">=3.8.0,<=3.13" +requires-python = ">=3.8.0,<3.14" readme = "README.md" license = {text = "MIT"} keywords = ["cmake", "completion", "vim", "lsp"]