Gastón Avila

Results 30 comments of Gastón Avila

nope, it fails the same way as it does from within pants. Here is the full content of the __run.sh script ``` #!/usr/bin/env bash # This command line should execute...

This is a valid bug since automatic login was removed upon password reset. All it needs is a PR updating the text. Good opportunity for a first time PR.

Hi, just driving by to mention that this shows up when we try to have dependabot run updates using `uv` instead of `pip-compile` so a potential big impact from having...

Dependabot will try to do exactly this ``` uv pip compile --build-isolation --output-file=requirements.txt \ --no-emit-index-url \ --no-annotate \ --no-header \ -P attrs==18.0.1 pyproject.toml ``` and `uv` complains with ``` error:...

It is my first time dearing to even look at a rust codebase but I would like to help. If you have a sample PR in which similar work has...

That's cool, not blocking us. Thanks Nick. El jue., 25 ago. 2016 9:09 p. m., Nick Janetakis [email protected] escribió: > Hi, thanks for the PR. Just wanted to say I...

Thanks @Bangertm, here is what your suggestion gives ``` from marshmallow_enum import EnumField ma_plugin = MarshmallowPlugin() def enumfield_custom_field2properties(self, field, **kwargs): ret = {} if isinstance(field, EnumField): ret["type"] = "string" if...

Why? Thanks for the pr but why are you sending it?

I tried spending a little time on this today and got some feedback from dependabot's CI here https://github.com/dependabot/dependabot-core/actions/runs/9581241755/job/26417616046 One error appears to be easy to fix, there is a check...

Made a bit more progress and found that there is an existing issue here to fix what I encountered above https://github.com/astral-sh/uv/issues/1964, writing it down for future generations.