https://github.com/maxscheurer/cppe
Raw File
Tip revision: 7ad4038e4666f6cd22b2e3b87b8eccb2d837c33e authored by Maximilian Scheurer on 08 December 2019, 18:17:25 UTC
Bump version: 0.1.2 → 0.1.3
Tip revision: 7ad4038
.travis.yml
dist: bionic
sudo: required
language: python
python:
  - "3.7"

addons:
 apt:
   packages:
     - libhdf5-dev
     - hdf5-tools

env:
 - PYTHONPATH=$PYTHONPATH:$(pwd)/build/stage/lib/ && PY_EXE=$(which python)

before_script:
  - python -V
  - pip install pytest numpy
  - pip install h5py
  - pip install numba
  - mkdir build
  - cd build
  - cmake -DBUILD_SHARED_LIBS=on -DENABLE_PYTHON_INTERFACE=ON -DPYTHON_EXECUTABLE=$PY_EXE ..

script:
  - cmake --version
  - make
  - cd ..
  - pytest
back to top