Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to python-lsp-jsonrpc #34

Merged
merged 1 commit into from
Dec 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions poetry.lock

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

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ typing_extensions = "*"
[tool.poetry.dev-dependencies]
black = "==22.12.0"
mypy = "==0.991"
python-jsonrpc-server = "==0.4.0"
python-lsp-jsonrpc = "==1.0.0"

[tool.ruff]
line-length = 88
Expand Down Expand Up @@ -73,6 +73,6 @@ module = [
"debugpy.*",
"lsprotocol.*",
"pygls.*",
"pyls_jsonrpc.*",
"pylsp_jsonrpc.*",
]
ignore_missing_imports = true
6 changes: 3 additions & 3 deletions tests/client/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
from threading import Event
from typing import Any

from pyls_jsonrpc.dispatchers import MethodDispatcher
from pyls_jsonrpc.endpoint import Endpoint
from pyls_jsonrpc.streams import JsonRpcStreamReader, JsonRpcStreamWriter
from pylsp_jsonrpc.dispatchers import MethodDispatcher
from pylsp_jsonrpc.endpoint import Endpoint
from pylsp_jsonrpc.streams import JsonRpcStreamReader, JsonRpcStreamWriter

from tests.client.constants import PROJECT_ROOT
from tests.client.defaults import VSCODE_DEFAULT_INITIALIZE
Expand Down