Skip to content

Commit bd54a29

Browse files
authored
Merge pull request #61 from OpenSourceBrain/development
Ignoring full download cell files
2 parents e753a6f + 16b6294 commit bd54a29

3 files changed

Lines changed: 98 additions & 8 deletions

File tree

.github/workflows/non-omv.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ 3.8, 3.9, "3.10" ]
17+
python-version: [ "3.9", "3.10", "3.11" ]
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626

.github/workflows/omv-ci.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,27 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ 3.8, 3.9 ]
17-
engine: ["NEURON:8.1", "PyNEURON:8.1", "jNeuroML", "jNeuroML_NEURON", "jNeuroML_NetPyNE", "jNeuroML_validate"]
18-
16+
python-version: [ "3.10", "3.11" ] # allensdk doesn't work with py 3.12...
17+
engine: ["NEURON", "PyNEURON", "NEURON:8.1", "PyNEURON:8.1", "jNeuroML", "jNeuroML_NEURON", "jNeuroML_NetPyNE", "jNeuroML_validate"]
18+
exclude:
19+
- python-version: "3.11"
20+
engine: "NEURON:8.1"
21+
- python-version: "3.11"
22+
engine: "PyNEURON:8.1"
1923

2024
steps:
21-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2226

2327
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2529
with:
2630
python-version: ${{ matrix.python-version }}
2731

2832
- name: Install OMV
2933
run: |
3034
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
3135
pip install scipy sympy matplotlib cython pandas tables
36+
pip install setuptools==80 # needed for Neuron on py 3.12
3237
3338
- name: Download selected NEURON models
3439
if: ${{ contains( matrix.engine, 'NEURON' ) }}

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -486,3 +486,88 @@ arm64
486486
/CellTypesDatabase/models/NeuroML2/489932597.net.nml
487487
/CellTypesDatabase/models/NeuroML2/491517388.net.nml
488488
/CellTypesDatabase/models/NeuroML2/496930338.net.nml
489+
490+
CellTypesDatabase/models/476630516/
491+
CellTypesDatabase/models/476637723/
492+
CellTypesDatabase/models/476637747/
493+
CellTypesDatabase/models/476637796/
494+
CellTypesDatabase/models/476679102/
495+
CellTypesDatabase/models/477313251/
496+
CellTypesDatabase/models/477510918/
497+
CellTypesDatabase/models/477510985/
498+
CellTypesDatabase/models/477838913/
499+
CellTypesDatabase/models/477839613/
500+
CellTypesDatabase/models/477876559/
501+
CellTypesDatabase/models/477878284/
502+
CellTypesDatabase/models/477878554/
503+
CellTypesDatabase/models/477880244/
504+
CellTypesDatabase/models/478045081/
505+
CellTypesDatabase/models/478045202/
506+
CellTypesDatabase/models/478045226/
507+
CellTypesDatabase/models/478047588/
508+
CellTypesDatabase/models/478047618/
509+
CellTypesDatabase/models/478048947/
510+
CellTypesDatabase/models/478513407/
511+
CellTypesDatabase/models/478513415/
512+
CellTypesDatabase/models/478513437/
513+
CellTypesDatabase/models/478513441/
514+
CellTypesDatabase/models/478809612/
515+
CellTypesDatabase/models/478809991/
516+
CellTypesDatabase/models/479234441/
517+
CellTypesDatabase/models/479427443/
518+
CellTypesDatabase/models/479694359/
519+
CellTypesDatabase/models/479694384/
520+
CellTypesDatabase/models/479694856/
521+
CellTypesDatabase/models/479695152/
522+
CellTypesDatabase/models/480056382/
523+
CellTypesDatabase/models/480361288/
524+
CellTypesDatabase/models/480613522/
525+
CellTypesDatabase/models/480624051/
526+
CellTypesDatabase/models/480624126/
527+
CellTypesDatabase/models/480624251/
528+
CellTypesDatabase/models/480624414/
529+
CellTypesDatabase/models/480630211/
530+
CellTypesDatabase/models/480630395/
531+
CellTypesDatabase/models/480630857/
532+
CellTypesDatabase/models/480631048/
533+
CellTypesDatabase/models/480631187/
534+
CellTypesDatabase/models/480631286/
535+
CellTypesDatabase/models/480632564/
536+
CellTypesDatabase/models/480633479/
537+
CellTypesDatabase/models/482524837/
538+
CellTypesDatabase/models/482529696/
539+
CellTypesDatabase/models/482583564/
540+
CellTypesDatabase/models/482934212/
541+
CellTypesDatabase/models/483066358/
542+
CellTypesDatabase/models/483106906/
543+
CellTypesDatabase/models/483109057/
544+
CellTypesDatabase/models/483156585/
545+
CellTypesDatabase/models/484620556/
546+
CellTypesDatabase/models/484628276/
547+
CellTypesDatabase/models/485476031/
548+
CellTypesDatabase/models/485510712/
549+
CellTypesDatabase/models/485513184/
550+
CellTypesDatabase/models/485513255/
551+
CellTypesDatabase/models/485591776/
552+
CellTypesDatabase/models/485602029/
553+
CellTypesDatabase/models/485720616/
554+
CellTypesDatabase/models/485904766/
555+
CellTypesDatabase/models/485909125/
556+
CellTypesDatabase/models/485909152/
557+
CellTypesDatabase/models/486052435/
558+
CellTypesDatabase/models/486144663/
559+
CellTypesDatabase/models/486508647/
560+
CellTypesDatabase/models/486508758/
561+
CellTypesDatabase/models/486556597/
562+
CellTypesDatabase/models/486556714/
563+
CellTypesDatabase/models/486558444/
564+
CellTypesDatabase/models/486909496/
565+
CellTypesDatabase/models/488462783/
566+
CellTypesDatabase/models/488462965/
567+
CellTypesDatabase/models/488759006/
568+
CellTypesDatabase/models/488763268/
569+
CellTypesDatabase/models/489931686/
570+
CellTypesDatabase/models/489932183/
571+
CellTypesDatabase/models/489932435/
572+
CellTypesDatabase/models/489932597/
573+
CellTypesDatabase/models/491517388/

0 commit comments

Comments
 (0)