Drew Ayling

Results 15 comments of Drew Ayling

> This is technically a duplicate of #354 It does appear to be related, but I don't know if they're trying to explicitly disable submodules or not. It seems to...

The problem is the way the docker image is built. The Dockerfile sets the PATH envvar via the ENV docker command. It doesn't actually update the PATH as a part...

I am also looking for this behavior. I think a simple approach could be to change value of the exit code when using `--dry-run`, i.e. 0 implies nothing needs to...

for what it's worth, I'm currently just doing this to see if `poetry install --sync` would result in environment changes. ```console poetry install --sync --dry-run 2>&1 | grep -q "0...

I agree that the functionality would be useful. I have a feeling it wouldn't be too much to implement either, but a maintainer should probably chime in. Maybe worth just...

@KeynesYouDigIt It's complaining about there being no `error` in the `ctx` dict e.g. ```python ... InitErrorDetails( { "type": "value_error", "loc": (info.field_name,), "input": v, "ctx": { "error": f"your_message {v}", }, }...

@samuelcolvin - I can't speak for OP, but for myself, I'd assume that I could define multiple field_validators to an attribute to verify it meets a few different criteria (and...

When enabled with "Refined Github" it appears to add multiple gif buttons that don't do anything along with the icon shortcuts for the table and collapsable content.

FYI that distutils, which is currently used in `setup.py` is also slated for deprecation in python 3.12, so it will still work but needs to be removed https://docs.python.org/3/whatsnew/3.10.html#distutils-deprecated For swtiching:...

FYI - this problem does not exist in 0.1.0 - if possible, you can pin to this as a temporary solution ala ``` requirements.txt rootpath==0.1.0 ```