From 06e39146157b1619bd9c0a2b15f96c8a49dff768 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Wed, 16 Aug 2023 10:32:53 +0200 Subject: [PATCH] Remove NEON warning message from `pyhmmer/__init__.py` This reverts commit c09ef1ab21436775f5a9d1f7273b012308f2d81d. --- pyhmmer/__init__.py | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/pyhmmer/__init__.py b/pyhmmer/__init__.py index a040c77..27b588d 100644 --- a/pyhmmer/__init__.py +++ b/pyhmmer/__init__.py @@ -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 @@ -33,7 +32,7 @@ __author__ = "Martin Larralde " __license__ = "MIT" -__version__ = "0.9.0+neon" +__version__ = "0.9.0" __all__ = [ "errors", "easel", @@ -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, -)