From 031d4dc85ae5e11b66cac608f15ef7b227b70071 Mon Sep 17 00:00:00 2001 From: Luflosi Date: Sun, 4 Oct 2020 13:42:46 +0200 Subject: [PATCH] Use pip3 instead of pip for CI There was a warning when the CI executed the "macOS Brew" job: ``` DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support ``` To fix this, use pip3 instead of pip. --- .github/workflows/ci.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.py b/.github/workflows/ci.py index 534ba5536..a01253e65 100644 --- a/.github/workflows/ci.py +++ b/.github/workflows/ci.py @@ -40,7 +40,7 @@ def install_deps(): if is_bundle: install_bundle() else: - run('pip install Pillow pygments') + run('pip3 install Pillow pygments') def build_kitty():