indygreg / python-build-standalone

Produce redistributable builds of Python
Mozilla Public License 2.0
1.97k stars 125 forks source link

Unsupported format when decompressing #183

Closed dvizzini closed 1 year ago

dvizzini commented 1 year ago

Forgive me if I am missing anything, but the following command fails.

$ tar --use-compress-program=unzstd -xvf ~/Downloads/cpython-3.11.3+20230507-aarch64-apple-darwin-pgo+lto-full.tar.zst
zstd: /*stdin*\: unsupported format
tar: Error opening archive: Child process exited with status 1

The following command works as expected:

$ tar --use-compress-program=unzstd -xvf ~/Downloads/cpython-3.9.13+20220630-aarch64-apple-darwin-pgo+lto-full.tar.zst

Is the latest python binary properly formatted?

Thanks in advance for any help.

dvizzini commented 1 year ago

Forgive me. I see https://github.com/indygreg/python-build-standalone/issues/172.

I had the broken files locally cached. I updated the shas and they now work.