Skip to content

Commit

Permalink
Try to fix pyinstaller build (skip tomli)
Browse files Browse the repository at this point in the history
  • Loading branch information
RalfG committed Oct 13, 2023
1 parent 40e7ad3 commit c72565c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ms2rescore.spec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ while requirements:
requirement = requirements.pop()
if re.match(skip_requirements_regex, requirement):
continue
if requirement in ["tomli"]:
continue
checked.add(requirement)
module_version = importlib.metadata.version(re.match(r"^[\w\-]+", requirement)[0])
try:
Expand Down
2 changes: 1 addition & 1 deletion ms2rescore/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""MS²Rescore: Sensitive PSM rescoring with predicted MS² peak intensities and RTs."""

__version__ = "3.0.0b1"
__version__ = "3.0.0b2"

from warnings import filterwarnings

Expand Down

0 comments on commit c72565c

Please sign in to comment.