Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.11" ]
python-version: [ "3.12" ]
engine:
- Arbor
- "Brian2:2.9.0"
Expand Down Expand Up @@ -67,10 +67,9 @@ jobs:
#sudo apt install octave
sudo apt-get install -y subversion # for neuroConstruct full install...

- name: Install numpy < 2 (or <2.4) if necessary...
- name: Install numpy < 2 if necessary...
run: |
pip install "numpy<2.4" # Issue with numpy 2.4 and quantities, see https://github.com/OpenSourceBrain/osb-model-validation/issues/150


if [[ ${{ matrix.engine }} == *"MOOSE"* ]] || [[ ${{ matrix.engine }} == *"Moose"* ]]; then pip install "numpy<2" ; fi ;

pip list
Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getbrian2.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

def install_brian2(version):
if not version:
version = "2.9.0"
version = "2.10.1"
try:
pip_install("brian2", version)
import brian2
Expand Down
Loading