https://github.com/vitay/ANNarchy
Raw File
Tip revision: aa1d2fd99e27f418ec5822eb45eeb0b2a1937197 authored by Julien Vitay on 20 June 2022, 09:18:53 UTC
Release 4.7.1.4
Tip revision: aa1d2fd
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 scipy
              - pip install -U tox numpy nose sympy cython matplotlib
              - pip --version
              - tox --version
              - python setup.py install
              - python tests/test_single_thread.py
back to top