# HG changeset patch # User Meredith Howard # Date 1614030925 21600 # Node ID ede01ab376a7e18e504ff94eac43a33c9022a0e4 # Parent 7947270fa7761accd62ffbf2f02a69069e23b980 switch to py3/pip3 diff --git a/bin/setup-hg-evolve b/bin/setup-hg-evolve --- a/bin/setup-hg-evolve +++ b/bin/setup-hg-evolve @@ -1,12 +1,12 @@ #!/bin/bash set -eu -o pipefail -if ! (command -v pip2 && pip2 -V) &>/dev/null; then +if ! (command -v pip3 && pip3 -V) &>/dev/null; then curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py | - python2 - --user + python3 - --user fi -pip2 install --user --upgrade hg-evolve +pip3 install --user --upgrade hg-evolve if ! grep -qsw evolve ~/.hgext/hgrc; then printf '[extensions]\nevolve =\n' >> ~/.hgext/hgrc diff --git a/bin/setup-hg-git b/bin/setup-hg-git --- a/bin/setup-hg-git +++ b/bin/setup-hg-git @@ -1,12 +1,12 @@ #!/bin/bash set -eu -o pipefail -if ! (command -v pip2 && pip2 -V) &>/dev/null; then +if ! (command -v pip3 && pip3 -V) &>/dev/null; then curl -fsSL --compressed https://bootstrap.pypa.io/get-pip.py | - python2 - --user + python3 - --user fi -pip2 install --user --upgrade hg-git +pip3 install --user --upgrade hg-git if ! grep -qsw hggit ~/.hgext/hgrc; then printf '[extensions]\nhggit =\n' >> ~/.hgext/hgrc