adelhpour / SBMLNetwork

SBMLNetwork is a library designed to enable software developers and systems biologists to interact with the graphical representation of SBML (Systems Biology Markup Language) models.
MIT License
0 stars 2 forks source link

Not sure if sb.getVersion() returns the current version. #77

Closed hsauro closed 2 months ago

hsauro commented 2 months ago

I install sbmlnetwork

pip show sbmlnetwork

gives 0.1.2

but

when I call

import sbmlnetwork sb = sbmlnetwork.load ('c:\tmp\JanaWolf.xml') sb.draw() print (sb.getVersion())

I get 0.0.22

adelhpour commented 2 months ago

This is probably due to an issue of using an old version of sbmlnetwork on your machine. I tested it and it works fine now. Upgrading the sbmlnetwork using pip install --upgrade sbmlnetwork will probably solve the issue.