Samuel Marks
Samuel Marks
Your META.json says this license. It'll be useful to have this in root for GitHub &etc.
Saw your release notes and thought - perfect: > uv venv --python will [automatically download](https://docs.astral.sh/uv/concepts/python-versions/#requesting-a-version) the Python version if required So gave it a shot: ```dockerfile FROM alpine ARG RYE_VER="0.39.0"...
``` gcc -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Werror=vla -Wendif-labels -Wmissing-format-attribute -Wimplicit-fallthrough=3 -Wcast-function-type -Wshadow=compatible-local -Wformat-security -fno-strict-aliasing -fwrapv -fexcess-precision=standard -Wno-format-truncation -Wno-stringop-truncation -O2 -ftree-vectorize -fassociative-math -fno-signed-zeros -fno-trapping-math -fPIC -fvisibility=hidden -I. -I./ -I/usr/local/include/postgresql/server -I/usr/local/include/postgresql/internal -D_GNU_SOURCE...
Was about to add a feature request then realised it already works: ``` $ curl --proto '=https' --tlsv1.2 -OLsSf https://github.com/astral-sh/uv/releases/download/0.2.29/uv-installer.sh $ env -i CARGO_HOME=/tmp/foo/cargo HOME=/tmp/foo/home /usr/bin/bash uv-installer.sh --no-modify-path downloading uv...
## Summary Closes #5449 ## Test Plan ``` $ curl --proto '=https' --tlsv1.2 -OLsSf https://github.com/astral-sh/uv/releases/download/0.2.29/uv-installer.sh $ env -i CARGO_HOME=/tmp/foo/cargo HOME=/tmp/foo/home /usr/bin/bash uv-installer.sh --no-modify-path downloading uv 0.2.29 x86_64-unknown-linux-gnu installing to /tmp/foo/cargo/bin...
### Feature Description It would be great to have a printf. I'm doing fancy escaping stuff where I want to evaluate a variable and quote it so PostgreSQL can execute...
### Feature Description It seems like a very common use-case. ### Describe The Solution You'd Like Here are two examples for getting the `latest` version: ```sh rye_version="$(curl -s https://api.github.com/repos/astral-sh/rye/tags |...
### Describe The Bug Was using the GitHub API to parse release objects within arrays within an object when I was unable to access elements at array index. Then realised...
FYI: No issues getting this installed on Android. Will try on iOS at some point. Some of the tests failed on Android when running in Termux but I'll see if...
### Feature Description It would be handy to know these things. ### Describe The Solution You'd Like Here's a quick solution: ```rs let mut all_steps = Self::handle_before_each_and_after_each_tasks(&config, &steps)?.into_owned(); for idx...