From 09773b8e64f9e2b2895fa90c46a4d06bfb85c850 Mon Sep 17 00:00:00 2001 From: Nicolas MAILLET <nicolas.maillet@pasteur.fr> Date: Fri, 13 Jul 2018 15:18:44 +0200 Subject: [PATCH] Version 1.0.3, no more support of python 3.4 --- CHANGELOG.rst | 5 +++++ README.rst | 2 +- docs/conf.py | 2 +- setup.py | 3 +-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 49fb93b..b1216fe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,11 @@ ========= CHANGELOG ========= +- 1.0.3 + Support of Python 3.7 + + Does not support Python 3.4 + - 1.0.2 Correct minor but funny typo diff --git a/README.rst b/README.rst index e26d434..59fabcb 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,7 @@ Rapid Peptides Generator (RPG) is a software dedicated to predict proteases-indu :target: http://rapid-peptide-generator.readthedocs.io/en/latest/?badge=latest :alt: Documentation Status -:note: RPG is tested with Gitlab Ci for the following Python version: 3.4 to 3.7 +:note: RPG is tested with Gitlab Ci for the following Python version: 3.5, 3.6 and 3.7 :issues: Please use https://gitlab.pasteur.fr/nmaillet/rpg diff --git a/docs/conf.py b/docs/conf.py index 7813cb7..ecde8a4 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 = '1.0.2' +release = '1.0.3' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c2f1faa..12d9e61 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages _MAJOR = 1 _MINOR = 0 -_MICRO = 2 +_MICRO = 3 version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO) release = '%d.%d' % (_MAJOR, _MINOR) @@ -22,7 +22,6 @@ metainfo = { 'Intended Audience :: Science/Research', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', -- GitLab