Skip to content

Commit

Permalink
poetry: update pygls to version 0.12 (#55)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
charlievieth authored Aug 4, 2022
1 parent 6de2cc3 commit 981150e
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 56 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python: ["3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-18.04, windows-2019]
steps:
- uses: actions/checkout@v2
Expand Down
100 changes: 50 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand All @@ -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]
Expand All @@ -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 = ["."]
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ envlist = py{36,37,38,39,310}-{linux,windows}

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit 981150e

Please sign in to comment.