-
Notifications
You must be signed in to change notification settings - Fork 23
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
Does this plugin install ruff? #100
Comments
is it because of the dependency in the I tried to just renamed the ruff binary in my So is it possible that pylsp can find "external" ruff (via PATH) instead? |
hmm, if I understand this problem correctly the issue is that, in the virtual environment, the |
Yes, with this sequence of commands it works as my original intention. 🎉 Not sure what the best default is, I just have to learn the
|
Does this plugin install ruff and is there any way to avoid that?
I already have ruff installed and available from my nix-shell environment. The version of ruff is tied to the project which might update slowly, currently the ruff version used
0.5.0
.I installed
python-lsp-server
with pipx and then installed the mypy and ruff plugins like this:however the issue is that this causes
ruff 0.7.0
to be installed and picked up. (it seems like)Is there some way to just get the connection to ruff enable (without installing ruff), and then use the ruff binary that will be loaded by my nix-shell environment (
0.5.0
)?The text was updated successfully, but these errors were encountered: