Gert Hulselmans

Results 463 comments of Gert Hulselmans

> Ah, thanks. I was just working on the same. I also managed to get it to work if you select another column as default. Using other column expressions than...

For now you will have to run it manually as it is not 100% there. Ruff does not have all linting rules implemented yet, especially from `flake8-simplify`. There are still...

> Unless I'm mistaken, VSCode doesn't support `ruff` yet as a linter, so we'll be stuck with `flake8` for now anyway. It seems like it exists: https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff > Isn't it...

> I believe `_deser_and_exec` calls all those functions with optionally extra args. It is up to the function to decide to use them or not. As of now, the other...

I still want to wait till at least: https://github.com/charliermarsh/ruff/issues/1551 is fixed.

Removed isort, pyupgrade and flake8 for the python linting workflow. Last patch is a temporary workaround till https://github.com/charliermarsh/ruff/issues/1551 is fixed.

New ruff was released with the last patch I needed for the import sorting bug. `.flake8` file is removed. Support for isort, pyupgrade and flake8 is removed too. Rebased against...

Are they not due dtype mismatch? ``` Dtype mismatch [left]: Duration(tu='ns') [right]: Duration(tu='us') ```

@ritchie46 Any reason why this pull request is not merged?

Maybe it would be good to to renmae RowsException to RowsError now that we are doing a breaking release. Ruff with `pep8-naming (N)` option complains about it: ``` polars/exceptions.py:41:11: N818...