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.
This commit is contained in:
parent
bf66d1c0f5
commit
031d4dc85a
2
.github/workflows/ci.py
vendored
2
.github/workflows/ci.py
vendored
@ -40,7 +40,7 @@ def install_deps():
|
|||||||
if is_bundle:
|
if is_bundle:
|
||||||
install_bundle()
|
install_bundle()
|
||||||
else:
|
else:
|
||||||
run('pip install Pillow pygments')
|
run('pip3 install Pillow pygments')
|
||||||
|
|
||||||
|
|
||||||
def build_kitty():
|
def build_kitty():
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user