Skip to content

Commit 432024f

Browse files
authored
Merge pull request #147 from OpenSourceBrain/development
To v0.3.10; Fix for issue with: omv all -V --engine=jNeuroML_NEURON
2 parents f0bc346 + e877421 commit 432024f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Run simple OMV tests
4646
run: |
47-
omv install pyNeuroML
47+
omv all -V --engine=jNeuroML_NEURON
4848
omv test -V utilities/tests/.test.exIzh.jnmlnetpyne.omt
4949
5050

omv/engines/jneuroml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_environment():
1616
if "JNML_HOME" in os.environ:
1717
jnmlhome = os.environ["JNML_HOME"]
1818
elif shutil.which(JNeuroMLEngine.e_name) is not None:
19-
jnmlhome = Path(shutil.which(JNeuroMLEngine.e_name)).parent
19+
jnmlhome = str(Path(shutil.which(JNeuroMLEngine.e_name)).parent)
2020
else:
2121
jnmlhome = ""
2222

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = OSBModelValidation
3-
version = 0.3.9
3+
version = 0.3.10
44
author = Boris Marin, Padraig Gleeson
55
author_email = [email protected]
66
url = https://github.com/OpenSourceBrain/osb-model-validation

0 commit comments

Comments
 (0)