Skip to content

Commit

Permalink
Rename jsonrpc package (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
gatesn authored Jan 8, 2019
1 parent 79f3ffe commit 98977b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyls/python_ls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import socketserver
import threading

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

from . import lsp, _utils, uris
from .config import config
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
'future>=0.14.0',
'futures; python_version<"3.2"',
'jedi>=0.12',
'python-jsonrpc-server',
'python-jsonrpc-server>=0.1.0',
'pluggy'
],

Expand Down
2 changes: 1 addition & 1 deletion test/test_language_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os
from threading import Thread

from jsonrpc.exceptions import JsonRpcMethodNotFound
from pyls_jsonrpc.exceptions import JsonRpcMethodNotFound
import pytest

from pyls.python_ls import start_io_lang_server, PythonLanguageServer
Expand Down

0 comments on commit 98977b6

Please sign in to comment.