Spaces:
Sleeping
Sleeping
File size: 374 Bytes
dc2106c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# Copyright (c) ONNX Project Contributors
# SPDX-License-Identifier: Apache-2.0
from packaging.version import parse as version
def numpy_older_than(ver: str) -> bool:
"""Returns True if the numpy version is older than the given version."""
import numpy # pylint: disable=import-outside-toplevel
return version(numpy.__version__) < version(ver)
|