https://github.com/vitay/ANNarchy
Raw File
Tip revision: 2811ccde8b9d42b83950f0b532e24596cf4282bd authored by Julien Vitay on 05 May 2022, 11:45:27 UTC
Release 4.7.1.3
Tip revision: 2811ccd
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