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
2 changes: 1 addition & 1 deletion .github/workflows/ci_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: [ubuntu-latest, macos-latest ]
exclude:
- runs-on: macos-latest
python-version: ["3.9"]
python-version: "3.9"

steps:
- uses: actions/checkout@v4
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.7.1"
version = "2.9.0"
try:
pip_install("brian2", version)
import brian2
Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getnest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def install_nest(version):
if not version:
version = "3.5"
version = "3.7"

inform("Installing NEST", indent=2, verbosity=1)
nestpath = os.path.join(os.environ["HOME"], "nest")
Expand Down
2 changes: 1 addition & 1 deletion omv/engines/getnrn.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
def install_neuron(version):
if not version:
if sys.version_info.major == 3:
version = "8.2.7" # for pynn 0.11.0
version = "8.2.7"
else:
version = "7.6"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = OSBModelValidation
version = 0.3.10
version = 0.3.11
author = Boris Marin, Padraig Gleeson
author_email = [email protected]
url = https://github.com/OpenSourceBrain/osb-model-validation
Expand Down
2 changes: 1 addition & 1 deletion utilities/tests/.test.exIzh.jnml.omt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ experiments:
scaling: [1000, 1000]
spike detection:
method: threshold
tolerance: 0.000051
tolerance: 5.0862371508887715e-05
2 changes: 1 addition & 1 deletion utilities/tests/.test.exIzh.jnmleden.omt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ experiments:
scaling: [1000, 1000]
spike detection:
method: threshold
tolerance: 0.00014888369126089628
tolerance: 0.00014884116521364865
Loading