Skip to content

Commit

Permalink
Update docs to render pylsp, and add a note on releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Apr 26, 2021
1 parent b6860f4 commit f9462ee
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
7 changes: 6 additions & 1 deletion docs/Language Servers.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,12 @@
},
"outputs": [],
"source": [
"nb_langs = [\"pyls\", \"r-languageserver\", \"julia-language-server\", \"jedi-language-server\"]\n",
"nb_langs = [\n",
" \"pylsp\",\n",
" \"r-languageserver\",\n",
" \"julia-language-server\",\n",
" \"jedi-language-server\",\n",
"]\n",
"lang_server_table(\n",
" {key: spec for key, spec in mgr.language_servers.items() if key in nb_langs}\n",
")"
Expand Down
13 changes: 11 additions & 2 deletions docs/Releasing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,19 @@
"- `binder/environment.yml`\n",
"- `requirements/lab.txt`\n",
"- `.github/workflows/job.test.yml`\n",
"- `README.md`\n",
"\n",
"- `README.md`"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Releasing:\n",
"\n",
"> Note: \"smoke source install\" step on CI will fail when bumping internal\n",
"> dependencies until those are published on NPM. Make sure to release those\n",
"> first and re-run this check then.\n",
"\n",
"```bash\n",
"cd packages/lsp-ws-connection\n",
"npm publish --access public\n",
Expand Down

0 comments on commit f9462ee

Please sign in to comment.