We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5a4685 commit 7c0589fCopy full SHA for 7c0589f
tests/unit_tests/test_images.py
@@ -3,13 +3,15 @@
3
import numpy as np
4
from pynwb import TimeSeries
5
from pynwb.image import GrayscaleImage, IndexSeries
6
+from packaging.version import Version
7
8
from nwbinspector import InspectorMessage, Importance
9
from nwbinspector.checks.images import (
10
check_order_of_images_unique,
11
check_order_of_images_len,
12
check_index_series_points_to_image,
13
)
14
+from nwbinspector.utils import get_package_version
15
16
HAVE_IMAGES = get_package_version(name="pynwb") >= Version("2.1.0")
17
skip_reason = "You must have PyNWB>=v2.1.0 to run these tests!"
0 commit comments