Skip to content

Commit

Permalink
Remove NEON warning message from pyhmmer/__init__.py
Browse files Browse the repository at this point in the history
This reverts commit c09ef1a.
  • Loading branch information
althonos committed Aug 16, 2023
1 parent eff4421 commit 06e3914
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions pyhmmer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import collections.abc as _collections_abc
import contextlib as _contextlib
import os as _os
import warnings as _warnings

from . import errors
from . import easel
Expand All @@ -33,7 +32,7 @@

__author__ = "Martin Larralde <martin.larralde@embl.de>"
__license__ = "MIT"
__version__ = "0.9.0+neon"
__version__ = "0.9.0"
__all__ = [
"errors",
"easel",
Expand Down Expand Up @@ -75,12 +74,3 @@
_contextlib.AbstractContextManager.register(easel.SSIReader)
_contextlib.AbstractContextManager.register(easel.SSIWriter)
_contextlib.AbstractContextManager.register(plan7.HMMFile)

_warnings.warn(
"You are importing the experimental Arm NEON branch of PyHMMER, "
"based on the develop branch of HMMER (3.3.2+eab5d49). "
"No guarantee is made about stability, compatibility or "
"correctness with the stable HMMER release (3.3.2). "
"Use at your own risk.",
ImportWarning,
)

0 comments on commit 06e3914

Please sign in to comment.