Skip to content

Commit bca96df

Browse files
committed
PyInstaller spec: add skimage data files (Py3.8 compat)
1 parent cf2c58a commit bca96df

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ for future and past milestones.
101101
only copy the attributes which match standard data types (integers, floats, strings)
102102
to avoid errors when serializing/deserializing the signal/image object
103103
* Installation/configuration viewer: improved readability (removed syntax highlighting)
104+
* PyInstaller specification file: added missing `skimage` data files manually in order
105+
to continue supporting Python 3.8 (see [Issue #12](https://github.com/Codra-Ingenierie-Informatique/DataLab/issues/12) - Stand-alone version on Windows 7: missing `api-ms-win-core-path-l1-1-0.dll`)
104106

105107
## DataLab Version 0.9.2 ##
106108

DataLab.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ from PyInstaller.utils.hooks import collect_submodules, collect_data_files
77
all_hidden_imports = collect_submodules('cdl')
88
datas = collect_data_files('cdl') + [('cdl\\plugins', 'cdl\\plugins')]
99
datas += collect_data_files('guidata') + collect_data_files('plotpy')
10+
datas += collect_data_files('skimage')
1011

1112
a = Analysis(
1213
['cdl\\start.pyw'],

0 commit comments

Comments
 (0)