-
I had trouble setting up the development environment via
@deepyaman gets something similar in his dev environment:
Has anyone successfully set up all the pre-commit hooks for Ibis in a conda environment? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You'll see those kind of errors when your version of
Pragmatic honest answer: when I run into this issue I just run |
Beta Was this translation helpful? Give feedback.
You'll see those kind of errors when your version of
ruff
is too old. Two things that could cause this:poetry.lock
file, they're batch updated periodically, not every time the poetry deps are updated.Pragmatic honest answer: when I run into this issue I just run
pip install -U ruff
and things work again :). Note as pure as using a lockfile, but it lets me get things working and get back to work.