Frazer McLean

Results 87 comments of Frazer McLean

> How/where should I do that? In the docstring? Or did I miss some other place? Yep, just the docstring.

While it's true that the compiled regex in the example doesn't have the issue (because it uses `$`), I think it's worth updating since it lets people use VERSION_PATTERN in...

I don't think so, follow appears to work in the original version of the library.

There's an issue with `DeepKeyValueName` when a nested object is nullable: ```typescript interface Fields { nested: { name: string labels: string[] } | null } const form = useForm({ defaultValues:...

@crutchcorn it's unique to `DeepKeyValueName` added in this PR, `` doesn't have the issue.

I have a case where uv build created a package where the `.tar.gz` file is all fine, but one of the filenames in the `.whl` file is truncated. A retry...

`uv build --wheel mysdist.tar.gz` consistently reproduces, it's not the tar-rs issue I linked. I still need to diff the sdists but the issue when it truncates is a PAX header...

Ok found the problem https://github.com/edera-dev/tokio-tar/blob/4ee357285b5053e6bfada7f117e530b4da94b74a/src/archive.rs#L317 ```rust if is_recognized_header && entry.header().entry_type().is_pax_local_extensions() { if self.pax_extensions.is_some() { return Poll::Ready(Some(Err(other( "two pax extensions entries describing \ the same member", )))); } let mut ef...

And here's a direct reproduction in uv: ```bash git clone https://github.com/RazerM/uv-cannot-install-this.git cd uv-cannot-install-this uv build --sdist uv build --wheel dist/uv_cannot_install_this-1.0.tar.gz uvx --from=dist/uv_cannot_install_this-1.0-py3-none-any.whl --python 3.12 --refresh uv-cannot-install-this ``` (these steps are...