Skip to content

install cython

install cython #61

Workflow file for this run

name: Non OMV test scripts
on:
push:
branches: [ master, development, experimental, test* ]
pull_request:
branches: [ master, development, experimental, test* ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ 3.9, "3.10", "3.11", "3.12" ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install OMV
run: |
pip install git+https://github.com/OpenSourceBrain/osb-model-validation@test_pynn011
- name: Test some scripts
run: |
pip install pyneuroml
omv install PyNN
./regenerate.sh
- name: OMV final version info
run: |
omv list -V # list installed engines
env