Skip to content

Commit

Permalink
Merge pull request #163 from compomics/fix/ionmob-in-windows-gui
Browse files Browse the repository at this point in the history
Fix ionmob in Windows installer
  • Loading branch information
RalfG authored Jul 31, 2024
2 parents 7ccb280 + 90f6736 commit 88f3241
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
pip install --only-binary :all: . pyinstaller
pip install --only-binary :all: .[ionmob] pyinstaller
- name: Install Inno Setup
uses: crazy-max/ghaction-chocolatey@v3
Expand Down
3 changes: 3 additions & 0 deletions ms2rescore.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ project = "ms2rescore"
bundle_name = "ms2rescore"
bundle_identifier = f"{bundle_name}.{__version__}"

extra_requirements = {"ionmob"}

# Requirements config
skip_requirements_regex = r"^(?:.*\..*)"

Expand All @@ -28,6 +30,7 @@ requirements = {
if "; extra ==" not in req # Exclude optional dependencies
}
requirements.update([project, "xgboost"])
requirements.update(extra_requirements)

hidden_imports = set()
datas = []
Expand Down

0 comments on commit 88f3241

Please sign in to comment.