Skip to content
Snippets Groups Projects
Commit c3fe7e98 authored by korigod's avatar korigod Committed by Daniel Agar
Browse files

integrationtests: upgrade numpy before px4tools install (#8274)


During px4tools installation, the latest version of pandas is
installed, which requires numpy>=1.9.0. Pandas installs the required
version, however, due to the presence of the old numpy in the docker
image, the present version 1.8.2 is used, which leads to an error
when importing pandas.

This commit fixes the problem by explicitly upgrading numpy before
px4tools installation.

Signed-off-by: default avatarAndrey Korigodsky <akorigod@gmail.com>
parent cddea6f4
No related branches found
No related tags found
No related merge requests found
......@@ -6,6 +6,7 @@
set -e
# TODO move to docker image
pip install --upgrade numpy -q
pip install px4tools pymavlink -q
# A POSIX variable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment