changeset 804f21d37aac in proteus:default
details: https://hg.tryton.org/proteus?cmd=changeset;node=804f21d37aac
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 660d71752eaf -r 804f21d37aac .drone.yml
--- a/.drone.yml Thu Oct 22 12:11:09 2020 +0200
+++ b/.drone.yml Sat Oct 24 13:45:13 2020 +0200
@@ -21,8 +21,6 @@
matrix:
include:
- - IMAGE: python:3.5
- TOXENV: py35
- IMAGE: python:3.6
TOXENV: py36
- IMAGE: python:3.7
diff -r 660d71752eaf -r 804f21d37aac CHANGELOG
--- a/CHANGELOG Thu Oct 22 12:11:09 2020 +0200
+++ b/CHANGELOG Sat Oct 24 13:45:13 2020 +0200
@@ -1,3 +1,4 @@
+* Remove support for Python 3.5
* Support PYSON comparison of date and datetime
Version 5.6.0 - 2020-05-04
diff -r 660d71752eaf -r 804f21d37aac setup.py
--- a/setup.py Thu Oct 22 12:11:09 2020 +0200
+++ b/setup.py Sat Oct 24 13:45:13 2020 +0200
@@ -78,7 +78,6 @@
'GNU Library or Lesser General Public License (LGPL)',
'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',
@@ -88,7 +87,7 @@
],
platforms='any',
license='LGPL-3',
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=[
"python-dateutil",
],
diff -r 660d71752eaf -r 804f21d37aac tox.ini
--- a/tox.ini Thu Oct 22 12:11:09 2020 +0200
+++ b/tox.ini Sat Oct 24 13:45:13 2020 +0200
@@ -1,5 +1,5 @@
[tox]
-envlist = py35,py36,py37,py38,pypy3
+envlist = py36,py37,py38,pypy3
[testenv]
commands = {envpython} setup.py test