Thomas Gilgenast
Thomas Gilgenast
Thanks for the response @dtrifiro ! I just tried reproducing from scratch in a clean venv which got dvc 2.25.0 and when I get to `dvc update --verbose data.xml.dvc` I...
To provide an update on this: I tried - a newer DVC version (2.31.0) - removing the `--rev` flag when doing `dvc import` - importing `model.pkl` instead of `data.xml.dvc` -...
I have run into this as well and wanted to summarize my understanding of the three possible workarounds based on the comments from @JukkaL, @simsa-st, and @NeilGirdhar above. ### Rewrite...
_Edited to combine two comments and to share some generic thoughts up-front._ There are maybe at least two ways to use git-based dependencies: 1. don't pin them, in which case...
As a short-term hacky option to work with for myself, I have made a tox plugin that allows you to write (e.g. for a "lint" testenv that depends only on...
Sorry for missing the notification 2 weeks ago - it slipped passed my inbox around the new year. I can confirm that this issue is gone with dvc==2.42.0 Testing updating...
I realized after opening this that it should theoretically be possible to use `extra-allowed` to allow strings that match the regex `^.*\\\n.*$` (or something similar to this) to be quoted....
I encountered this bug and used the following workaround: ```python def distinct_on( table: ir.Table, on: list[str], order_by: list[str], desc: bool = False ) -> ir.Table: """ Keep only the first...
I stumbled into this and #9309 with a similar but slightly different use case. I was rewriting some polars code to use ibis, and was missing something like polars `with_columns()`...