https://github.com/vitay/ANNarchy
Raw File
Tip revision: a00b8329d2587fe8abafd289dc1d5cf952d8d75c authored by Julien Vitay on 15 March 2023, 15:04:08 UTC
Release 4.7.2.2
Tip revision: a00b832
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