File tree Expand file tree Collapse file tree 6 files changed +13
-6
lines changed
python_packages/jupyter_lsp/jupyter_lsp Expand file tree Collapse file tree 6 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -278,7 +278,9 @@ jobs:
278278 path : ./dist
279279
280280 - name : Install python packages
281- run : python -m pip install --find-links=dist --no-index --ignore-installed --no-deps jupyter_lsp jupyterlab_lsp
281+ run : |
282+ python -m pip uninstall jupyter_lsp -y
283+ python -m pip install --find-links=dist --no-index --ignore-installed --no-deps jupyter_lsp jupyterlab_lsp
282284
283285 - name : Install Klingon file type extension and server specification (for testing languages without language servers)
284286 run : python -m pip install --find-links=dist --no-index --ignore-installed --no-deps klingon_ls_specification
Original file line number Diff line number Diff line change 11## Changelog
22
3- ### ` jupyter-lsp (next) `
3+ ### ` jupyter-lsp 2.3.0 `
44
55- features:
66 - add auto-detection of Pyrefly language server ([ #1136 ] ( https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1136 ) )
7+ - add auto-detection of basedpyright language server ([ #1152 ] ( https://github.com/jupyter-lsp/jupyterlab-lsp/issues/1152 ) )
78
89### ` @jupyter-lsp/jupyterlab-lsp 5.2.0 `
910
Original file line number Diff line number Diff line change @@ -75,7 +75,11 @@ Python (pyright)
7575
7676Python (basedpyright)
7777 ${def } = Set Variable lastToken:fib
78- Editor Shows Features for Server basedpyright Python example.py Diagnostics=is not defined (basedpyright)
78+ Editor Shows Features for Server
79+ ... basedpyright
80+ ... Python
81+ ... example.py
82+ ... Diagnostics=is not defined (basedpyright)
7983 ... Jump to Definition=${def }
8084
8185R
Original file line number Diff line number Diff line change 11""" single source of truth for jupyter_lsp version
22"""
33
4- __version__ = "2.2.6 "
4+ __version__ = "2.3.0 "
Original file line number Diff line number Diff line change 1010from .jedi_language_server import JediLanguageServer
1111from .julia_language_server import JuliaLanguageServer
1212from .pyls import PalantirPythonLanguageServer
13- from .pyright import PyrightLanguageServer
1413from .pyrefly import PyreflyLanguageServer
14+ from .pyright import PyrightLanguageServer
1515from .python_lsp_server import PythonLSPServer
1616from .r_languageserver import RLanguageServer
1717from .sql_language_server import SQLLanguageServer
Original file line number Diff line number Diff line change @@ -19,5 +19,5 @@ class PyreflyLanguageServer(ShellSpec):
1919 conda = "conda install -c conda-forge pyrefly" ,
2020 ),
2121 config_schema = load_config_schema (key ),
22- requires_documents_on_disk = False
22+ requires_documents_on_disk = False ,
2323 )
You can’t perform that action at this time.
0 commit comments