conda / conda-package-handling

Create and extract conda packages of various formats
https://conda.github.io/conda-package-handling/
BSD 3-Clause "New" or "Revised" License
27 stars 37 forks source link

Use force_zip64=True when directly creating .conda files #249

Closed dholth closed 5 months ago

dholth commented 5 months ago

Description

Address same issue as https://github.com/conda/conda-package-streaming/issues/79 but when creating .conda directly (handled by conda-package-handling) , not converting from .tar.bz2 (handled by conda-package-streaming).

Fix #248

Tested by running dd if=/dev/urandom of=random bs=1M count=2048 and cph c . /tmp/big.conda, which will create a 2147533062-byte pkg-big.tar.zst, fail on the older code and succeed after this fix.

Checklist - did you ...