poetry: update pygls to version 0.12 (#55)

Update pygls to version 0.12 to remove a conflict with
jedi-language-server which requires pygls "^0.12" and set the minimum
python version to py37 (as required by pygls 0.12).

This commit also bumps the cmake-language-server version to 0.1.36
This commit is contained in:
Charlie Vieth
2022-08-04 09:28:14 -04:00
committed by GitHub
parent 6de2cc3867
commit 981150e308
4 changed files with 55 additions and 56 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "cmake-language-server"
version = "0.1.5"
version = "0.1.6"
description = "CMake LSP Implementation"
license = "MIT"
authors = ["regen"]
@@ -18,8 +18,8 @@ classifiers = [
]
[tool.poetry.dependencies]
python = "^3.6"
pygls = "^0.11"
python = "^3.7,<3.11"
pygls = "^0.12"
importlib-metadata = {version = "^4.8", python = "<3.8"}
[tool.poetry.dev-dependencies]
@@ -45,7 +45,7 @@ enable_isort = true
enable_mypy = true
mypy_preset = "strict"
line_length = 88
py_version = "py36"
py_version = "py37"
[[tool.pysen.lint.mypy_targets]]
paths = ["."]