changeset f951ffcc20a2 in trytond-gis:default
details: https://hg.tryton.org/trytond-gis?cmd=changeset;node=f951ffcc20a2
description:
        Remove support for Python 3.5

        issue9733
diffstat:

 .drone.yml |  2 --
 CHANGELOG  |  1 +
 setup.py   |  3 +--
 tox.ini    |  2 +-
 4 files changed, 3 insertions(+), 5 deletions(-)

diffs (50 lines):

diff -r 1817ac152339 -r f951ffcc20a2 .drone.yml
--- a/.drone.yml        Fri Oct 16 19:19:59 2020 +0200
+++ b/.drone.yml        Sat Oct 24 13:45:13 2020 +0200
@@ -33,8 +33,6 @@
 
 matrix:
     include:
-        - IMAGE: python:3.5
-          TOXENV: py35
         - IMAGE: python:3.6
           TOXENV: py36
         - IMAGE: python:3.7
diff -r 1817ac152339 -r f951ffcc20a2 CHANGELOG
--- a/CHANGELOG Fri Oct 16 19:19:59 2020 +0200
+++ b/CHANGELOG Sat Oct 24 13:45:13 2020 +0200
@@ -1,3 +1,4 @@
+* Remove support for Python 3.5
 Version 5.6.0 - 2020-05-04
 * Bug fixes (see mercurial logs for details)
 
diff -r 1817ac152339 -r f951ffcc20a2 setup.py
--- a/setup.py  Fri Oct 16 19:19:59 2020 +0200
+++ b/setup.py  Sat Oct 24 13:45:13 2020 +0200
@@ -77,7 +77,6 @@
         'License :: OSI Approved :: GNU General Public License (GPL)',
         'Operating System :: OS Independent',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
@@ -85,7 +84,7 @@
         ],
     platforms='any',
     license='GPL-3',
-    python_requires='>=3.5',
+    python_requires='>=3.6',
     install_requires=requires,
     entry_points={
         'trytond.backend': [
diff -r 1817ac152339 -r f951ffcc20a2 tox.ini
--- a/tox.ini   Fri Oct 16 19:19:59 2020 +0200
+++ b/tox.ini   Sat Oct 24 13:45:13 2020 +0200
@@ -1,5 +1,5 @@
 [tox]
-envlist = py35,py36,py37,py38
+envlist = py36,py37,py38
 
 [testenv]
 commands = {envpython} setup.py test

Reply via email to