From 23363d42727544e1e42a04979f8e648a559206f9 Mon Sep 17 00:00:00 2001 From: Thomas Buckley-Houston Date: Sat, 29 Jul 2023 16:32:22 -0500 Subject: [PATCH] build(deps): lock min Python version to 3.7.9 Github Actions for windows uses Python 3.7.9 not 3.7.16. This wasn't picked up in the PR that introduced the original lock because of dependency caching. See: https://github.com/openlawlibrary/pygls/actions/runs/5702563535/job/15454396739#step:6:12 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0b5687cc..0a50cc23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ license = "Apache 2.0" readme = "README.md" [tool.poetry.dependencies] -python = ">=3.7.16,<4" +python = ">=3.7.9,<4" lsprotocol = "2023.0.0a2" typeguard = "^3.0.0" websockets = {version = "^11.0.3", optional = true}