1234567891011121314151617181920212223242526272829 |
- language: generic
- os: osx
- # language: python
- # python:
- # - "2.7.15"
- # - "3.6.6"
- # - "3.7-dev"
- # dist: trusty
- # addons:
- # apt:
- # packages:
- # - opencl-headers
- # - ocl-icd-opencl-dev
- # - fglrx
- git:
- depth: false
- install:
- # There is sometimes issues with the install order so do this bad boi first
- - pip3 install pybind11
- - pip3 install -r requirements.txt
- - pip3 install -e .
- script:
- - python3 test.py
|