## Motivation
GitHub release metadata may contain control characters in the release
body.
When parsing the release metadata, json.loads() can raise:
JSONDecodeError: Invalid control character
As a result, the installer fails to extract the wheel URL and exits
with:
Error: No wheel file found in the latest release.
## Change
Add strict=False to json.loads() when parsing release metadata so the
installer
can tolerate control characters and continue extracting the wheel URL.
Signed-off-by: Renyu Chen <renyuchen1@gmail.com>