Skip to content

Commit

Permalink
making compatible with Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Apr 21, 2021
1 parent 4f63be7 commit 8f9b517
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion biosimulators_utils/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.54'
__version__ = '0.1.55'
2 changes: 1 addition & 1 deletion biosimulators_utils/sedml/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ def compile_math(math):
'Sub', 'Mult', 'Div', 'Pow',
'And', 'Or', 'Not',
'BitAnd', 'BitOr', 'BitXor',
'Call',
'Call', 'Constant',
],
funcs=MATHEMATICAL_FUNCTIONS.keys())
compiled_math = compile(math_node, '<math>', 'eval')
Expand Down

0 comments on commit 8f9b517

Please sign in to comment.