Tiansu

Results 59 comments of Tiansu

FYI, take a look at https://github.com/astral-sh/uv?tab=readme-ov-file#resolution-strategy for their resolution strategy `--resolution=lowest`.

I am encoutering a similar issue as well: My private libA has a dependency on another private libB. Both pip and pipx can install this libA without any issue when...

@matteius The attack surface can be minimized (I would even say mitigated) if you put your private repo in front of the public one. I don't think this feature should...

Thanks for sharing. From the stackoverflow link: > Pip does not really prioritize one index over the other in theory. In practice, because of a coincidence in the way things...

If not supported natively, consider one option to combine with tox to run against multiple python versions.

@gventuri I have written a draft. If you want to test it, you can go add a test pypi person access token as `PYPI_TOKEN` in github secret (which can be...

I will come back to this as soon as I can. In the mean time, the PR is not correct from my point of view. Regarding the action itself. 1)...

It is so annoying that Amazon set the Amazon Q button on the top of the right click list. If you care about developer experience at all, you will not...

> Yeah, I know. It makes sense to think about the target image. Unfortunately, I'm not sure about that. I just know, I don't really like the initial proposal to...

I guess the work around for now for strings would be regex ```terraform variable "fruit" { type = string validation { condition = can(regex("^(apple|banana|peach)$", var.fruit)) error_message = "fruit must be...