Skip to content

Commit

Permalink
Use tifffile for testing instead of scikit-image (#145)
Browse files Browse the repository at this point in the history
As scikit-image has dropped their vendored copy of tifffile, switch to
using tifffile directly for testing our ability to read TIFFs.
  • Loading branch information
jakirkham authored Jun 8, 2020
1 parent 2caa39e commit faedcfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run_tests(self):
"flake8 >=3.4.1",
"pytest >=3.0.5",
"pytest-flake8 >=0.8.1",
"scikit-image >=0.12.3",
"tifffile >=2018.10.18",
]

cmdclasses = {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dask_image/test_imread/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pytest

import numpy as np
from skimage.external import tifffile
import tifffile

import dask.array.utils as dau
import dask_image.imread
Expand Down

0 comments on commit faedcfb

Please sign in to comment.