File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 3
3
import socketserver
4
4
import threading
5
5
6
- from jsonrpc .dispatchers import MethodDispatcher
7
- from jsonrpc .endpoint import Endpoint
8
- from jsonrpc .streams import JsonRpcStreamReader , JsonRpcStreamWriter
6
+ from pyls_jsonrpc .dispatchers import MethodDispatcher
7
+ from pyls_jsonrpc .endpoint import Endpoint
8
+ from pyls_jsonrpc .streams import JsonRpcStreamReader , JsonRpcStreamWriter
9
9
10
10
from . import lsp , _utils , uris
11
11
from .config import config
Original file line number Diff line number Diff line change 36
36
'future>=0.14.0' ,
37
37
'futures; python_version<"3.2"' ,
38
38
'jedi>=0.12' ,
39
- 'python-jsonrpc-server' ,
39
+ 'python-jsonrpc-server>=0.1.0 ' ,
40
40
'pluggy'
41
41
],
42
42
Original file line number Diff line number Diff line change 2
2
import os
3
3
from threading import Thread
4
4
5
- from jsonrpc .exceptions import JsonRpcMethodNotFound
5
+ from pyls_jsonrpc .exceptions import JsonRpcMethodNotFound
6
6
import pytest
7
7
8
8
from pyls .python_ls import start_io_lang_server , PythonLanguageServer
You can’t perform that action at this time.
0 commit comments