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
bitbucket-pipelines.yml
# This is a sample build configuration for Python.
# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples.
# Only use spaces to indent your .yml configuration.
# -----
# You can specify a custom docker image from Docker Hub as your build environment.
image: python:latest

pipelines:
  branches:
      master:
        - step:
            script: # Modify the commands below to build your repository.
              - pip install -U tox numpy scipy nose sympy==1.6.0 cython matplotlib
              - pip --version
              - tox --version
              - python setup.py install
              - python tests/test_openMP.py
back to top