Skip to content

Commit

Permalink
PyInstaller spec: add skimage data files (Py3.8 compat)
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Dec 22, 2023
1 parent cf2c58a commit bca96df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ for future and past milestones.
only copy the attributes which match standard data types (integers, floats, strings)
to avoid errors when serializing/deserializing the signal/image object
* Installation/configuration viewer: improved readability (removed syntax highlighting)
* PyInstaller specification file: added missing `skimage` data files manually in order
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`)

## DataLab Version 0.9.2 ##

Expand Down
1 change: 1 addition & 0 deletions DataLab.spec
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ from PyInstaller.utils.hooks import collect_submodules, collect_data_files
all_hidden_imports = collect_submodules('cdl')
datas = collect_data_files('cdl') + [('cdl\\plugins', 'cdl\\plugins')]
datas += collect_data_files('guidata') + collect_data_files('plotpy')
datas += collect_data_files('skimage')

a = Analysis(
['cdl\\start.pyw'],
Expand Down

0 comments on commit bca96df

Please sign in to comment.