From 0a9d7f24d25cc8f0912e82604ec0ff828406b826 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Mon, 11 Dec 2023 10:59:32 -0500 Subject: [PATCH] [skip ci] Ensure mercurial is installed under Python 3 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2793bca..aad0ac1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -52,7 +52,7 @@ jobs: # Mercurial seems to be broken on PyPy, so we need to install it before # overriding the default Python. if: startsWith(matrix.os, 'macos-') - run: python -m pip install mercurial + run: python3 -m pip install mercurial - name: Set up Python uses: actions/setup-python@v4