changeset 8ca9d56d12ef in modules/account_payment:default
details:
https://hg.tryton.org/modules/account_payment?cmd=changeset;node=8ca9d56d12ef
description:
Remove support for Python 3.5
issue9733
diffstat:
.drone.yml | 6 ------
CHANGELOG | 1 +
setup.py | 3 +--
tox.ini | 6 +++---
4 files changed, 5 insertions(+), 11 deletions(-)
diffs (63 lines):
diff -r a431d30e9a5b -r 8ca9d56d12ef .drone.yml
--- a/.drone.yml Thu Oct 22 00:03:07 2020 +0200
+++ b/.drone.yml Sat Oct 24 13:45:10 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 a431d30e9a5b -r 8ca9d56d12ef CHANGELOG
--- a/CHANGELOG Thu Oct 22 00:03:07 2020 +0200
+++ b/CHANGELOG Sat Oct 24 13:45:10 2020 +0200
@@ -1,3 +1,4 @@
+* Remove support for Python 3.5
* Allow payment journal to be deactivated
* Allow going back to processing state
* Add aggregated information on Payment groups
diff -r a431d30e9a5b -r 8ca9d56d12ef setup.py
--- a/setup.py Thu Oct 22 00:03:07 2020 +0200
+++ b/setup.py Sat Oct 24 13:45:10 2020 +0200
@@ -119,7 +119,6 @@
'Natural Language :: Turkish',
'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',
@@ -129,7 +128,7 @@
'Topic :: Office/Business :: Financial :: Accounting',
],
license='GPL-3',
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=requires,
dependency_links=dependency_links,
zip_safe=False,
diff -r a431d30e9a5b -r 8ca9d56d12ef tox.ini
--- a/tox.ini Thu Oct 22 00:03:07 2020 +0200
+++ b/tox.ini Sat Oct 24 13:45:10 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://}