From 0c18d601a4874c537ca6c302e9360363e4af15d5 Mon Sep 17 00:00:00 2001 From: RalfG Date: Wed, 15 Jan 2025 14:05:51 +0100 Subject: [PATCH] Version bump; pin Mokapot to 0.10.0 --- ms2rescore/__init__.py | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ms2rescore/__init__.py b/ms2rescore/__init__.py index 73535fa..6c0f6a2 100644 --- a/ms2rescore/__init__.py +++ b/ms2rescore/__init__.py @@ -1,6 +1,6 @@ """MS²Rescore: Sensitive PSM rescoring with predicted MS² peak intensities and RTs.""" -__version__ = "3.1.2" +__version__ = "3.2.0.dev1" from warnings import filterwarnings diff --git a/pyproject.toml b/pyproject.toml index 9f873ac..ca9e402 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ms2rescore" -description = "MS²Rescore: Sensitive PSM rescoring with predicted MS² peak intensities and retention times." +description = " Modular and user-friendly platform for AI-assisted rescoring of peptide identifications." readme = "README.md" license = { file = "LICENSE" } keywords = [ @@ -40,7 +40,7 @@ dependencies = [ "im2deep>=0.1.3", "jinja2>=3", "lxml>=4.5", - "mokapot>=0.10", + "mokapot==0.10", # 0.11.0 will introduce API changes "ms2pip>=4.0.0", "ms2rescore_rs>=0.4.0", "numpy>=1.25", @@ -89,11 +89,11 @@ profile = "black" [tool.black] line-length = 99 -target-version = ['py38'] +target-version = ['py39'] [tool.ruff] line-length = 99 -target-version = 'py38' +target-version = 'py39' [tool.ruff.lint] extend-select = ["T201", "T203"]