changeset 47201:95950dc832cf

pyoxidizer: pin Python to 3.8 Newer versions of PyOxidizer use version 3.9 by default. As part of upgrading PyOxidizer, we want to pin the version at 3.8 so we can compare differences more easily. Differential Revision: https://phab.mercurial-scm.org/D10679
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 06 May 2021 16:13:33 -0700
parents 3e18a29deec9
children 0de5eefbe4b2
files rust/hgcli/pyoxidizer.bzl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/rust/hgcli/pyoxidizer.bzl	Thu May 06 16:00:44 2021 -0700
+++ b/rust/hgcli/pyoxidizer.bzl	Thu May 06 16:13:33 2021 -0700
@@ -8,7 +8,7 @@
 set_build_path(ROOT + "/build/pyoxidizer")
 
 def make_distribution():
-    return default_python_distribution()
+    return default_python_distribution(python_version = "3.8")
 
 def make_distribution_windows():
     return default_python_distribution(flavor = "standalone_dynamic")