mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 15:48:13 -05:00
20 lines
396 B
YAML
20 lines
396 B
YAML
language: python
|
|
python:
|
|
- 3.6
|
|
before_install:
|
|
- sudo apt-get -qq update
|
|
- sudo apt-get install libboost-dev
|
|
- sudo apt-get install libc++-dev
|
|
|
|
install:
|
|
- "pip install scipy"
|
|
- "pip install numpy"
|
|
- "pip install matplotlib"
|
|
- "pip install pandas"
|
|
- "pip install Cython"
|
|
- "pip install git+https://github.com/ghliu/pyReedsShepp"
|
|
|
|
script:
|
|
- python --version
|
|
- ./runtests.sh
|