Skip to content

Commit 3c12285

Browse files
committed
To v0.13.4; allows xml or sbml files to be validated as SBML
1 parent 9f0c26f commit 3c12285

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyneuroml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
__version__ = importlib_metadata.version("pyNeuroML")
1313

1414

15-
JNEUROML_VERSION = "0.13.3"
15+
JNEUROML_VERSION = "0.13.4"
1616

1717
# Define a logger for the package
1818
logging.basicConfig(

pyneuroml/pynml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ def _evaluate_arguments(args):
567567

568568
# Deal with the SBML validation option which doesn't call run_jneuroml
569569
if args.validate_sbml or args.validate_sbml_units:
570-
file_types = ["sbml"]
570+
file_types = ["sbml","xml"]
571571
try:
572572
from pyneuroml.sbml import validate_sbml_files
573573
except Exception:

0 commit comments

Comments
 (0)