travis: Install libpython3.4-dev
This is now needed because we use "language: generic" which doesn't come with that package.
This commit is contained in:
parent
0086fc7851
commit
56a2b6778c
@ -95,23 +95,26 @@ pip_install
|
|||||||
|
|
||||||
case $TESTENV in
|
case $TESTENV in
|
||||||
py34-cov)
|
py34-cov)
|
||||||
apt_install xvfb $pyqt_pkgs
|
apt_install xvfb $pyqt_pkgs libpython3.4-dev
|
||||||
check_pyqt
|
check_pyqt
|
||||||
;;
|
;;
|
||||||
pylint|vulture)
|
pylint|vulture)
|
||||||
apt_install $pyqt_pkgs
|
apt_install $pyqt_pkgs libpython3.4-dev
|
||||||
check_pyqt
|
check_pyqt
|
||||||
;;
|
;;
|
||||||
flake8)
|
flake8)
|
||||||
# We need an up-to-date Python because of:
|
# We need an up-to-date Python because of:
|
||||||
# https://github.com/google/yapf/issues/46
|
# https://github.com/google/yapf/issues/46
|
||||||
apt_install -t trusty-updates python3.4
|
apt_install -t trusty-updates python3.4 libpython3.4-dev
|
||||||
;;
|
;;
|
||||||
docs)
|
docs)
|
||||||
apt_install $pyqt_pkgs asciidoc
|
apt_install $pyqt_pkgs asciidoc libpython3.4-dev
|
||||||
check_pyqt
|
check_pyqt
|
||||||
;;
|
;;
|
||||||
misc|pyroma|check-manifest)
|
misc)
|
||||||
|
apt_install libpython3.4-dev
|
||||||
|
;;
|
||||||
|
pyroma|check-manifest)
|
||||||
;;
|
;;
|
||||||
eslint)
|
eslint)
|
||||||
apt_install npm nodejs nodejs-legacy
|
apt_install npm nodejs nodejs-legacy
|
||||||
|
Loading…
Reference in New Issue
Block a user