Skip to content

Commit

Permalink
FIX: Ver
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed Jul 22, 2024
1 parent 1ca5742 commit d2bc39e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mne_nirs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
from ._version import __version__
from importlib.metadata import version

try:
__version__ = version("mne-nirs")
except Exception:
__version__ = "0.0.0"
del version


from . import channels
from . import datasets
Expand Down

0 comments on commit d2bc39e

Please sign in to comment.