pyoxidizer: pin Python to 3.8
authorGregory Szorc <gregory.szorc@gmail.com>
Thu, 06 May 2021 16:13:33 -0700
changeset 47212 95950dc832cf
parent 47211 3e18a29deec9
child 47213 0de5eefbe4b2
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
rust/hgcli/pyoxidizer.bzl
--- 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")