D9406: pyoxidizer: point to the py3 requirements instead of py2 on Windows
mharbison72 (Matt Harbison)
phabricator at mercurial-scm.org
Thu Nov 26 08:17:27 UTC 2020
mharbison72 created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9406
AFFECTED FILES
rust/hgcli/pyoxidizer.bzl
CHANGE DETAILS
diff --git a/rust/hgcli/pyoxidizer.bzl b/rust/hgcli/pyoxidizer.bzl
--- a/rust/hgcli/pyoxidizer.bzl
+++ b/rust/hgcli/pyoxidizer.bzl
@@ -72,7 +72,7 @@
# On Windows, we install extra packages for convenience.
if IS_WINDOWS:
exe.add_python_resources(
- exe.pip_install(["-r", ROOT + "/contrib/packaging/requirements-windows-py2.txt"]),
+ exe.pip_install(["-r", ROOT + "/contrib/packaging/requirements-windows-py3.txt"]),
)
return exe
To: mharbison72, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list