Skip to content

Commit

Permalink
Pyinstaller fix (#43)
Browse files Browse the repository at this point in the history
* Pyinstaller 3.5 upgrade

Pyinstaller 3.5 has a security problem

* Remove hook

* re add hook openpyxl

* change hook path
  • Loading branch information
Tomnl authored Apr 1, 2020
1 parent 070895e commit 3df2b94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/appveyor/mzml2isa_cli.spec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ a = Analysis(['mzml2isa_cli.py'],
('..\\..\\mzml2isa\\ontologies\\imagingMS.obo', 'mzml2isa\\ontologies' ),
('..\\..\\mzml2isa\\ontologies\\psi-ms.obo', 'mzml2isa\\ontologies' )],
hiddenimports=['pronto'],
hookspath=['.'],
hookspath=['hook-openpyxl.py'],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
Expand Down
2 changes: 1 addition & 1 deletion ci/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ pip
setuptools
wheel
twine
pyinstaller==3.5 ; sys_platform == 'win32'
pyinstaller>=3.6 ; sys_platform == 'win32'

0 comments on commit 3df2b94

Please sign in to comment.