diff --git a/pyneuroml/__init__.py b/pyneuroml/__init__.py index 72ac3b95..ce1ec3e0 100644 --- a/pyneuroml/__init__.py +++ b/pyneuroml/__init__.py @@ -12,7 +12,7 @@ __version__ = importlib_metadata.version("pyNeuroML") -JNEUROML_VERSION = "0.13.2" +JNEUROML_VERSION = "0.13.3" # Define a logger for the package logging.basicConfig( diff --git a/pyneuroml/lib/jNeuroML-0.13.1-jar-with-dependencies.jar b/pyneuroml/lib/jNeuroML-0.13.1-jar-with-dependencies.jar deleted file mode 100644 index 7240de71..00000000 Binary files a/pyneuroml/lib/jNeuroML-0.13.1-jar-with-dependencies.jar and /dev/null differ diff --git a/pyneuroml/lib/jNeuroML-0.13.2-jar-with-dependencies.jar b/pyneuroml/lib/jNeuroML-0.13.3-jar-with-dependencies.jar similarity index 96% rename from pyneuroml/lib/jNeuroML-0.13.2-jar-with-dependencies.jar rename to pyneuroml/lib/jNeuroML-0.13.3-jar-with-dependencies.jar index d0d873f4..3c30dbb5 100644 Binary files a/pyneuroml/lib/jNeuroML-0.13.2-jar-with-dependencies.jar and b/pyneuroml/lib/jNeuroML-0.13.3-jar-with-dependencies.jar differ diff --git a/pyneuroml/xppaut/__init__.py b/pyneuroml/xppaut/__init__.py index 88fc6591..688a40a0 100644 --- a/pyneuroml/xppaut/__init__.py +++ b/pyneuroml/xppaut/__init__.py @@ -250,10 +250,13 @@ def substitute_functions(expr, functions): def to_xpp(data, new_xpp_filename): xpp_ode = "" + from pyneuroml import __version__ + xpp_ode += "\n## XPP export from pyNeuroML v%s\n"%__version__ + xpp_ode += "\n# Parameters\n" for k, v in data["parameters"].items(): if k not in INBUILT.keys(): - xpp_ode += f"par {k} = {v}\n" + xpp_ode += f"par {k}={v}\n" xpp_ode += "\n# Functions\n" for k, v in data["functions"].items(): diff --git a/setup.cfg b/setup.cfg index 532a7be5..ee29d3b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyNeuroML -version = 1.3.6 +version = 1.3.7 author = Padraig Gleeson author_email = p.gleeson@gmail.com url = https://github.com/NeuroML/pyNeuroML