-
Notifications
You must be signed in to change notification settings - Fork 148
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
jupyter_lsp - different location of jupyter-lsp-notebook.json between 2.2.2 and 2.2.3 #1068
Comments
Yes, in 2.2.3 we partially modernized the setup script/config removing data_files from setuptools.setup(
- data_files=[
- (
- "etc/jupyter/jupyter_server_config.d",
- ["jupyter_lsp/etc/jupyter-lsp-jupyter-server.json"],
- ),
- (
- "etc/jupyter/jupyter_notebook_config.d",
- ["jupyter_lsp/etc/jupyter-lsp-notebook.json"],
- ),
- ],
) and adding it in + [options.data_files]
+ etc/jupyter/jupyter_server_config.d = jupyter_lsp/etc/jupyter-lsp-jupyter-server.json Now, you can see that The fact that |
Oh, I see. I thought that both JSONs are the same but you are right that the |
jupyter-lsp 2.2.4 should have solved it, please reopen if there is still a problem. Thanks! |
This is probably more of a question than a bug report. If you install jupyter_lsp 2.2.2,
jupyter-lsp-notebook.json
is in two different locations (in a virtual environment):with 2.2.3 it's just in
I maintain this as an RPM package and for version 2.2.2 I moved the config file from its default install location
/usr/etc
to/etc
.So my question is: Should I move the config files to /etc or leave them in site-packages?
The text was updated successfully, but these errors were encountered: