From: John Snow <[email protected]> In python3.14, fixes were made to the file URI parsing [1] such that file URIs that used to work but were technically out of spec are now broken.
As a result, our msys2 GitLab CI tests began failing. Stop using "file://" URI links in favor of simple paths (Thanks pbo) to fix parsing errors under Python 3.14 and fix the msys2 GitLab CI tests. [1] https://docs.python.org/3/whatsnew/3.14.html#urllib Reported-by: Pierrick Bouvier <[email protected]> Suggested-by: Pierrick Bouvier <[email protected]> Signed-off-by: John Snow <[email protected]> Reviewed-by: Pierrick Bouvier <[email protected]> Tested-by: Pierrick Bouvier <[email protected]> Signed-off-by: Richard Henderson <[email protected]> Message-ID: <[email protected]> (cherry picked from commit 587f4a1805c83a4e1d59dd43cb14e0a834843d1d) Signed-off-by: Michael Tokarev <[email protected]> diff --git a/python/scripts/mkvenv.py b/python/scripts/mkvenv.py index 9aed266df1..826c4ad58d 100644 --- a/python/scripts/mkvenv.py +++ b/python/scripts/mkvenv.py @@ -675,7 +675,7 @@ def pip_install( if not online: full_args += ["--no-index"] if wheels_dir: - full_args += ["--find-links", f"file://{str(wheels_dir)}"] + full_args += ["--find-links", str(wheels_dir)] full_args += list(args) subprocess.run( full_args, -- 2.47.3
