We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42d6154 commit d5fe00dCopy full SHA for d5fe00d
cpython-unix/build.py
@@ -712,6 +712,7 @@ def build_cpython(
712
"""Build CPython in a Docker image'"""
713
entry_name = "cpython-%s" % version
714
entry = DOWNLOADS[entry_name]
715
+ python_version = entry["version"]
716
717
python_archive = download_entry(entry_name, DOWNLOADS_PATH)
718
setuptools_archive = download_entry("setuptools", DOWNLOADS_PATH)
@@ -732,7 +733,7 @@ def build_cpython(
732
733
setup = derive_setup_local(
734
static_modules_lines,
735
python_archive,
- python_version=entry["version"],
736
+ python_version=python_version,
737
musl="musl" in target_triple,
738
debug=optimizations == "debug",
739
disabled=disabled_static_modules,
0 commit comments