Follow up from https://github.com/BlueBrain/nmodl/pull/1147#issuecomment-1976227012. If we do: ```sh pip install nmodl-nightly ``` then we get for the version: ```sh $ pip show nmodl-nighty Name: NMODL-nightly Version: 0.6.112 ... ``` If we call NMODL, we get: ```sh $ 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: ```sh $ python -c 'import nmodl;print(nmodl.__version__)' 0.6 ``` Is this intended behavior or not?
Follow up from #1147 (comment).
If we do:
then we get for the version:
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.6Is this intended behavior or not?