Skip to content
Merged
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 @@ -44,7 +44,7 @@ jobs:

- name: Run simple OMV tests
run: |
omv install pyNeuroML
omv all -V --engine=jNeuroML_NEURON
omv test -V utilities/tests/.test.exIzh.jnmlnetpyne.omt


Expand Down
2 changes: 1 addition & 1 deletion omv/engines/jneuroml.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def get_environment():
if "JNML_HOME" in os.environ:
jnmlhome = os.environ["JNML_HOME"]
elif shutil.which(JNeuroMLEngine.e_name) is not None:
jnmlhome = Path(shutil.which(JNeuroMLEngine.e_name)).parent
jnmlhome = str(Path(shutil.which(JNeuroMLEngine.e_name)).parent)
else:
jnmlhome = ""

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.9
version = 0.3.10
author = Boris Marin, Padraig Gleeson
author_email = borismarin@gmail.com
url = https://github.com/OpenSourceBrain/osb-model-validation
Expand Down
Loading