https://github.com/vitay/ANNarchy
Raw File
Tip revision: 686640bfd6da7bdfc1bada95e4ca66ebcca50884 authored by Julien Vitay on 09 September 2020, 11:14:39 UTC
4.6.9.3 fixes the bold extension.
Tip revision: 686640b
.travis.yml
sudo: required
dist: xenial
language: python
python:
  - "3.6"
  - "3.7"
cache: apt
addons:
  apt:
    packages:
    - libatlas-dev
    - libatlas-base-dev
    - liblapack-dev
    - gfortran
before_install:
  - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

install:
  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose sympy==1.6.0 cython matplotlib
  - source activate test-environment
  - python setup.py install
# command to run tests
script: python tests/test_openMP.py
# Branches to build
branches:
  only:
    - master
    - develop
back to top