Skip to content

Commit a4bc9b1

Browse files
committed
setup: change dependency of scikit-image to tifffile 2020.5.25
1 parent 538366e commit a4bc9b1

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
0.3.6
2+
- setup: change dependency of scikit-image to tifffile 2020.5.25
13
0.3.5
24
- maintenance release
35
0.3.4

pyscanfcs/gui_wx/doc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import multipletau
99
import numpy
1010
import scipy
11-
import skimage
11+
import tifffile
1212
import wx
1313

1414

@@ -108,8 +108,8 @@ def SoftwareUsed():
108108
"\n - matplotlib " + matplotlib.__version__ +\
109109
"\n - multipletau " + multipletau.__version__ +\
110110
"\n - NumPy " + numpy.__version__ +\
111-
"\n - scikit-image " + skimage.__version__ +\
112111
"\n - SciPy " + scipy.__version__ +\
112+
"\n - tifffile " + tifffile.__version__ +\
113113
"\n - wxPython " + wx.__version__
114114
if hasattr(sys, 'frozen'):
115115
pyinst = "\n\nThis executable has been created using PyInstaller."

pyscanfcs/openfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""filetype definitions"""
22
import astropy.io.fits
33
import numpy as np
4-
from skimage.external import tifffile
4+
import tifffile
55

66

77
def openAny(path, callback=None):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
"matplotlib>=1.1.0",
6969
"multipletau>=0.1.4",
7070
"numpy>=1.5.1",
71-
"scikit-image>=0.13.1",
7271
"scipy>=0.8.0",
72+
"tifffile>=2020.5.25",
7373
"wxpython>=4.0.3",
7474
],
7575
setup_requires=['cython', 'numpy', 'pytest-runner'],

0 commit comments

Comments
 (0)