Skip to content

Commit

Permalink
Fix NEST versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
pnbabu committed Jul 4, 2023
1 parent e2912f9 commit 7b5e1a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynestml/codegeneration/nest_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def detect_nest_version(cls) -> str:
if "DataConnect" in dir(nest):
nest_version = "v2.20.2"
else:
nest_version = "v" + nest.__version__
nest_version = "v" + nest.ll_api.sli_func("statusdict/version ::")
if "post0.dev0" in nest_version:
nest_version = "master"
except:
Expand Down

0 comments on commit 7b5e1a0

Please sign in to comment.