From 73bcfab7213e9b88b3336f2529af2b5b30e05178 Mon Sep 17 00:00:00 2001
From: Nico Maillet <nicolas.maillet@pasteur.fr>
Date: Wed, 3 Feb 2021 16:43:22 +0100
Subject: [PATCH] Remove python3.5 compatibility

---
 CHANGELOG.rst | 2 ++
 README.rst    | 2 +-
 setup.py      | 3 +--
 3 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index a0d4dde..2ed3090 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -6,6 +6,8 @@ CHANGELOG
 
     Input file can be processed in parallel (-c options for the number of processes to use)
 
+    Remove Python 3.5 compatibility
+
 - 1.1.0
     Modify input. Now, option -i only takes files. Use option -s to input sequence
 
diff --git a/README.rst b/README.rst
index e523cdd..1514198 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.5 to 3.9
+:note: RPG is tested with Gitlab Ci for the following Python version: 3.6 to 3.9
 :issues: Please use https://gitlab.pasteur.fr/nmaillet/rpg
 
 
diff --git a/setup.py b/setup.py
index 9223168..07f4d83 100644
--- a/setup.py
+++ b/setup.py
@@ -99,7 +99,6 @@ setup(
         # Specify the Python versions you support here. In particular, ensure
         # that you indicate you support Python 3. These classifiers are *not*
         # checked by 'pip install'. See instead 'python_requires' below.
-        'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
@@ -133,7 +132,7 @@ setup(
     # 'Programming Language' classifiers above, 'pip install' will check this
     # and refuse to install the project if the version does not match. See
     # https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires
-    python_requires='>=3.5',
+    python_requires='>=3.6',
 
     # This field lists other packages that your project depends on to run.
     # Any package you put here will be installed by pip when your project is
-- 
GitLab