Andreu Codina
Andreu Codina
> Not sure if related, but there was an issue with artifacts-keyring that was fixed 1-2 weeks ago. It was sometimes printing stuff other than the credentials to stdout. https://github.com/microsoft/artifacts-keyring/pulls...
> > > Not sure if related, but there was an issue with artifacts-keyring that was fixed 1-2 weeks ago. It was sometimes printing stuff other than the credentials to...
> @debnath-d The `.python-version` file can be read by other tools like GitHub Actions to determine which version to install. The version file pins to a single version whereas the...
For me, it's interesting to run tasks in parallel with a single command (e.g. `uv run task start-development`). For example, I want to run an MLflow server and execute a...
It happens with Python too. Package: `azure-cosmos==4.9.0` ```python my_container.create_item({"id": "1", "name": "héllo"}) ```
In my case, I have a `src` folder, but not a folder inside (i.e. `my-fastapi-app/my-fastapi-app/src`): ``` my-fastapi-app/ src/ main.py pyproject.toml uv.lock .venv/ ``` And, for example, when I execute `uv...
> You shouldn't need a `src` directory to use uv -- can you provide an example? E.g., this works without any `pyproject.toml` changes (it uses an `./app` directory): https://github.com/astral-sh/uv-fastapi-example That...
I see, but there's something I don't understand. I'll show a case to be more graphical. I want to create a repository called facedetector, with the next workspaces: `api`, `domain`,...
Maybe we can use `astral-rye` or `rye-astral` while `rye` is transferred.
In .NET we have a single command for the linter, type checker and formatter with `dotnet build` (https://learn.microsoft.com/en-us/community/content/how-to-enforce-dotnet-format-using-editorconfig-github-actions#enforcing-code-style-on-build). Meanwhile you can run them separately, it's a cognitive overhead for me.