From eb9c252147d5037b3b00bb5311d5748805d5cb88 Mon Sep 17 00:00:00 2001 From: Erwin Coumans Date: Tue, 28 Nov 2017 22:17:24 -0800 Subject: [PATCH] update travis to add setuptools --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 20e5c857a..18817a077 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,10 @@ addons: script: - echo "CXX="$CXX - echo "CC="$CC + - pip install -U pip wheel + - pip install setuptools + - sudo python3 setup.py install + - python3 examples/pybullet/unittests/unittests.py - cmake . -DBUILD_PYBULLET=ON -G"Unix Makefiles" #-DCMAKE_CXX_FLAGS=-Werror - make -j8 - ctest -j8 --output-on-failure @@ -26,5 +30,3 @@ script: - make -j8 - ctest -j8 --output-on-failure - sudo make install - - sudo python3 setup.py install - - python3 examples/pybullet/unittests/unittests.py