From 1683cea9503123c9daf4ba48a53c2f8c8982b2f9 Mon Sep 17 00:00:00 2001 From: Nico Maillet <nicolas.maillet@pasteur.fr> Date: Mon, 18 Dec 2023 09:54:58 +0100 Subject: [PATCH] Version 2.0.3 --- .readthedocs.yaml | 2 +- CHANGELOG.rst | 5 +++++ docs/conf.py | 2 +- rpg/RapidPeptidesGenerator.py | 4 ++-- setup.py | 3 ++- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 79577d9..db5803f 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -8,7 +8,7 @@ version: 2 build: os: ubuntu-22.04 tools: - python: "3.11" + python: "3.12" # You can also specify other tool versions: # nodejs: "20" # rust: "1.70" diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d434b12..c6d894f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ ========= CHANGELOG ========= +- `2.0.3 <https://gitlab.pasteur.fr/nmaillet/rpg/-/releases/2.0.3>`_ + Tested on Python 3.12 + + Add α-Lytic, #46 + - `2.0.2 <https://gitlab.pasteur.fr/nmaillet/rpg/-/releases/2.0.2>`_ Add Elastase, #45 diff --git a/docs/conf.py b/docs/conf.py index f7d7d85..ca44c9b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = 'Nicolas Maillet' # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.0.2' +release = '2.0.3' # -- General configuration --------------------------------------------------- diff --git a/rpg/RapidPeptidesGenerator.py b/rpg/RapidPeptidesGenerator.py index 5bac315..cb22ec6 100644 --- a/rpg/RapidPeptidesGenerator.py +++ b/rpg/RapidPeptidesGenerator.py @@ -29,9 +29,9 @@ necessary functions """ -__version_info__ = ('2', '0', '2') +__version_info__ = ('2', '0', '3') __version__ = '.'.join(__version_info__) -__revision_date__ = "2023-10-06" +__revision_date__ = "2023-12-18" __author__ = "Nicolas Maillet" import argparse diff --git a/setup.py b/setup.py index bb848aa..d68354b 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( # For a discussion on single-sourcing the version across setup.py and the # project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='2.0.2', # Required + version='2.0.3', # Required # This is a one-line description or tagline of what your project does. This # corresponds to the "Summary" metadata field: @@ -105,6 +105,7 @@ setup( 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], # This field adds keywords for your project which will appear on the -- GitLab