Commit b2b47f11 authored by DurgeshSamant's avatar DurgeshSamant

Minor fix

pip3 does not seem to work. trying with only pip2
parent 2bf09199
...@@ -16,7 +16,6 @@ install: ...@@ -16,7 +16,6 @@ install:
; ;
fi fi
- sudo -H pip2 install --upgrade nose numpy - sudo -H pip2 install --upgrade nose numpy
- sudo -H pip3 install --upgrade nose numpy
os: os:
- linux - linux
- osx - osx
...@@ -28,4 +27,4 @@ env: ...@@ -28,4 +27,4 @@ env:
script: script:
- mkdir build && cd build - mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=RelwithDebInfo .. && make -j4 && make install - cmake -DCMAKE_BUILD_TYPE=RelwithDebInfo .. && make -j4 && make install
- cd .. && pip3 install --user . && nosetests --exe -vd tests/test_basic.py - cd .. && pip2 install --user . && nosetests --exe -vd tests/test_basic.py
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment