Temporarily remove prospector.

This commit is contained in:
Cyteen May 2020-02-26 14:16:24 +00:00
parent 60f86352c6
commit 1c51eed6f0
1 changed files with 24 additions and 3 deletions

View File

@ -124,8 +124,9 @@ apt-get install -y git
git clone https://github.com/VundleVim/Vundle.vim.git ${DEST}/.vim/bundle/Vundle.vim
# Prepend to the .vimrc
rm ${DEST}/.vimrc_pending
if [ -f ${DEST}/.vimrc_pending ];then
rm ${DEST}/.vimrc_pending
fi
touch ${DEST}/.vimrc_pending
cat > $DEST/.vimrc_pending << 'EOF'
@ -387,4 +388,24 @@ apt-get install -y python-pip
#pip install jedi
apt-get install -y vim-python-jedi pylama pylint flake8
#apt-get install -y prospector
pip install prospector[with_pyroma]
# FIXME: Install prospector
# pip install prospector[with_pyroma]
# Fails with:
# Failed building wheel for prospector
# Failed building wheel for dodgy
# Failed building wheel for pylint-celery
# Failed building wheel for pylint-django
# Failed building wheel for pylint-flask
# Failed building wheel for pylint-plugin-utils
# Failed building wheel for requirements-detector
# Failed building wheel for setoptconf
# dodgy - searches for dodgy looking lines in Python code
# python3-pylint-celery - Pylint plugin for code using the Celery library (Python3)
# python3-pylint-django - Pylint plugin for analysing code using Django (Python 3)
# python3-pylint-flask - pip install pylint-flask - Pylint plugin for analysing code when using Flask
# python3-pylint-plugin-utils - Utilities and helpers for writing Pylint plugins (Python 3)
# python3-requirements-detector - finds and lists the requirements of a Python project
# python3-setoptconf - retrieve Python3 program settings from a variety of sources