diff options
author | James McCoy <jamessan@jamessan.com> | 2022-01-03 16:23:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-03 16:23:20 -0500 |
commit | efe6485aca62c13045ef269ce0c218bce4a7e864 (patch) | |
tree | 9a5453c66858bd86fbadf8bdde0d24a67674bae1 /ci/install.sh | |
parent | 1036ca846e172674105afc36c336493c3d9cc3a7 (diff) | |
parent | ec615abd1fda28cbb8920709ec30874b9067643a (diff) | |
download | rneovim-efe6485aca62c13045ef269ce0c218bce4a7e864.tar.gz rneovim-efe6485aca62c13045ef269ce0c218bce4a7e864.tar.bz2 rneovim-efe6485aca62c13045ef269ce0c218bce4a7e864.zip |
Merge pull request #16903 from dundargoc/ci/install-flake-with-apt
ci: install flake8 with apt instead of pip
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ci/install.sh b/ci/install.sh index ea706639fb..bd42274b49 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -3,11 +3,6 @@ set -e set -o pipefail -if [[ "${CI_TARGET}" == lint ]]; then - python3 -m pip -q install --user --upgrade flake8 - exit -fi - # Use default CC to avoid compilation problems when installing Python modules. echo "Install neovim module for Python 3." CC=cc python3 -m pip -q install --user --upgrade pynvim |