Diego Martínez

Results 6 comments of Diego Martínez

La opción de --install-option está deprecada en pip. Yo probé a ver si funcionaba --config-settings pero nada. Al final instalando el paquete normal y luego siguiendo el README para instalar...

@charliermarsh I believed so when reading the documentation. But after some tries I didn't manage to make it work as I expected, thus I open the issue. Maybe I am...

@j178 thanks for the help, that tag fixed the problem. Turns out that with the version I was using that command didn't exist and had to upgrade uv 👍

@eacevedof a mi tambié me fallaba, se me solucionó añadiendo el plugin _application_ en el archivo build.gradle y especificando una main class en este mismo archivo

The `UserSignup` class looks like this: ```python class UserSignup: _repository: UserRepository def __init__(self, repository: UserRepository) -> None: self._repository = repository async def __call__(self, command: UserSignupCommand) -> None: user = User.signup(...

I was facing the same issue: when I uninstalled one concrete library, `uv` removed all the dependencies from `[dependencies-groups]` section too. I found two fixes: - As mentioned before, just...