https://github.com/vitay/ANNarchy
Raw File
Tip revision: ec134257d6168b2bea18bb4619348def2eaf4af7 authored by Julien Vitay on 30 August 2023, 07:03:26 UTC
Issue #13: report(): neurons without parameters do not generate empty tables.
Tip revision: ec13425
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