-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(binaries): Bring PyPi package size under the limit (#192)
According to https://pypi.org/help/#file-size-limit, there is a limit of 100MB for any given wheel. Our Linux x64 wheel is 101MB, and so the 1.0.0 release failed to upload. This reduces the binary size by avoiding distro-specific versions of ffprobe. The only thing we get from distro-specific versions of ffmpeg is hardware-encoding support, but that doesn't apply to ffprobe. So it was wasteful to include distro-specific ffprobe builds. This reduces the Linux x64 wheel size from 101MB to 69MB.
- Loading branch information
1 parent
b196c19
commit 3de6706
Showing
2 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters