BlueBrain / nmodl

Code Generation Framework For NEURON MODeling Language
https://bluebrain.github.io/nmodl/
Apache License 2.0
49 stars 15 forks source link

Investigate NMODL version(s) #1199

Closed JCGoran closed 4 months ago

JCGoran commented 4 months ago

Follow up from https://github.com/BlueBrain/nmodl/pull/1147#issuecomment-1976227012. If we do:

pip install nmodl-nightly

then we get for the version:

$ pip show nmodl-nighty
Name: NMODL-nightly
Version: 0.6.112
...

If we call NMODL, we get:

$ nmodl --help
NMODL : Source-to-Source Code Generation Framework [0.6 85a4906f 2024-03-01 13:38:36 +0100]
...

On the other hand, if we get the version from the __version__ attribute:

$ python -c 'import nmodl;print(nmodl.__version__)'
0.6

Is this intended behavior or not?