Skip to content

Rename jsonrpc package #470

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

Merged
merged 1 commit into from
Jan 8, 2019
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
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