matplotlib requires some AFM fonts, but there's no explicit dep. IMHO, matplotlib should be more resilient to the failure, and not throw a traceback at matplotlib.font_manager.
Anyway, this fixes the issue. Signed-off-by: Cleber Rosa <[email protected]> --- contrib/install-autotest-server.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/install-autotest-server.sh b/contrib/install-autotest-server.sh index 7100cc0..62e906e 100755 --- a/contrib/install-autotest-server.sh +++ b/contrib/install-autotest-server.sh @@ -185,7 +185,7 @@ PACKAGES_UTILITY=(unzip wget) PACKAGES_WEBSERVER=(httpd mod_wsgi Django) PACKAGES_MYSQL=(mysql-server MySQL-python) PACKAGES_DEVELOPMENT=(git java-devel) -PACKAGES_PYTHON_LIBS=(python-imaging python-crypto python-paramiko python-httplib2 numpy python-matplotlib python-atfork) +PACKAGES_PYTHON_LIBS=(python-imaging python-crypto python-paramiko python-httplib2 numpy python-matplotlib urw-fonts python-atfork) PACKAGES_SELINUX=(selinux-policy selinux-policy-targeted policycoreutils-python) PACKAGES_ALL=( \ ${PACKAGES_UTILITY[*]} -- 1.7.11.7 _______________________________________________ Autotest-kernel mailing list [email protected] https://www.redhat.com/mailman/listinfo/autotest-kernel
