Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ev-br committed Feb 3, 2025
1 parent ad21e11 commit b151ddf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions array_api_strict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,12 @@

__all__ += ['set_array_api_strict_flags', 'get_array_api_strict_flags', 'reset_array_api_strict_flags', 'ArrayAPIStrictFlags']

from . import _version
__version__ = _version.__version__
del _version
try:
from . import _version
__version__ = _version.__version__
del _version
except ImportError:
__version__ = "unknown"


# Extensions can be enabled or disabled dynamically. In order to make
Expand Down

0 comments on commit b151ddf

Please sign in to comment.