changeset 998bd03e7787 in modules/purchase_secondary_unit:default
details:
https://hg.tryton.org/modules/purchase_secondary_unit?cmd=changeset;node=998bd03e7787
description:
Remove support for Python 3.5
issue9733
diffstat:
.drone.yml | 6 ------
CHANGELOG | 4 +++-
setup.py | 3 +--
tox.ini | 6 +++---
4 files changed, 7 insertions(+), 12 deletions(-)
diffs (68 lines):
diff -r 9322fe579630 -r 998bd03e7787 .drone.yml
--- a/.drone.yml Fri Oct 16 19:19:58 2020 +0200
+++ b/.drone.yml Sat Oct 24 13:45:11 2020 +0200
@@ -36,12 +36,6 @@
matrix:
include:
- - IMAGE: python:3.5
- TOXENV: py35
- DATABASE: sqlite
- - IMAGE: python:3.5
- TOXENV: py35
- DATABASE: postgresql
- IMAGE: python:3.6
TOXENV: py36
DATABASE: sqlite
diff -r 9322fe579630 -r 998bd03e7787 CHANGELOG
--- a/CHANGELOG Fri Oct 16 19:19:58 2020 +0200
+++ b/CHANGELOG Sat Oct 24 13:45:11 2020 +0200
@@ -1,5 +1,7 @@
+* Remove support for Python 3.5
+
Version 5.6.0 - 2020-05-04
* Bug fixes (see mercurial logs for details)
Version 5.4.0 - 2019-11-04
-* Initial release
\ No newline at end of file
+* Initial release
diff -r 9322fe579630 -r 998bd03e7787 setup.py
--- a/setup.py Fri Oct 16 19:19:58 2020 +0200
+++ b/setup.py Sat Oct 24 13:45:11 2020 +0200
@@ -118,7 +118,6 @@
'Natural Language :: Spanish',
'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',
@@ -127,7 +126,7 @@
'Topic :: Office/Business',
],
license='GPL-3',
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=requires,
dependency_links=dependency_links,
zip_safe=False,
diff -r 9322fe579630 -r 998bd03e7787 tox.ini
--- a/tox.ini Fri Oct 16 19:19:58 2020 +0200
+++ b/tox.ini Sat Oct 24 13:45:11 2020 +0200
@@ -1,12 +1,12 @@
[tox]
-envlist = {py35,py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
+envlist = {py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
[testenv]
commands = {envpython} setup.py test
deps =
- {py35,py36,py37,py38}-postgresql: psycopg2 >= 2.5
+ {py36,py37,py38}-postgresql: psycopg2 >= 2.5
pypy3-postgresql: psycopg2cffi >= 2.5
- {py35,py36}-sqlite: sqlitebck
+ py36-sqlite: sqlitebck
setenv =
sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}