Skip to content

Commit

Permalink
ci: workaround for Python 3.6 version getter
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmueller committed Jun 16, 2024
1 parent fa47f9d commit 6eb1d71
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion igor2/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# flake8: noqa: F401
"""Interface for reading binary IGOR files."""
from ._version import __version__, __version_tuple__
try:
from ._version import __version__, __version_tuple__
except ImportError
# semver not working on Python 3.6
__version__ = "unknown"


from . import binarywave

0 comments on commit 6eb1d71

Please sign in to comment.