File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 7
7
import socketserver
8
8
import threading
9
9
10
- from pyls_jsonrpc .dispatchers import MethodDispatcher
11
- from pyls_jsonrpc .endpoint import Endpoint
12
- from pyls_jsonrpc .streams import JsonRpcStreamReader , JsonRpcStreamWriter
10
+ from pylsp_jsonrpc .dispatchers import MethodDispatcher
11
+ from pylsp_jsonrpc .endpoint import Endpoint
12
+ from pylsp_jsonrpc .streams import JsonRpcStreamReader , JsonRpcStreamWriter
13
13
14
14
from . import lsp , _utils , uris
15
15
from .config import config
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def get_version(module='pylsp'):
27
27
28
28
install_requires = [
29
29
'jedi>=0.17.2,<0.19.0' ,
30
- 'python-jsonrpc-server>=0.4 .0' ,
30
+ 'python-lsp-jsonrpc>=1.0 .0' ,
31
31
'pluggy' ,
32
32
'ujson>=3.0.0'
33
33
]
Original file line number Diff line number Diff line change 7
7
import sys
8
8
from threading import Thread
9
9
10
- from pyls_jsonrpc .exceptions import JsonRpcMethodNotFound
10
+ from pylsp_jsonrpc .exceptions import JsonRpcMethodNotFound
11
11
import pytest
12
12
13
13
from pylsp .python_lsp import start_io_lang_server , PythonLSPServer
You can’t perform that action at this time.
0 commit comments