changeset 60c18f9eb778 in trytond:default
details: https://hg.tryton.org/trytond?cmd=changeset;node=60c18f9eb778
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 662ae82c0f5e -r 60c18f9eb778 .drone.yml
--- a/.drone.yml Thu Oct 22 12:11:09 2020 +0200
+++ b/.drone.yml Sat Oct 24 13:45:13 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 662ae82c0f5e -r 60c18f9eb778 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 import of timedelta data
* Add symbol widget
* Add sql_pairing tool
diff -r 662ae82c0f5e -r 60c18f9eb778 setup.py
--- a/setup.py Thu Oct 22 12:11:09 2020 +0200
+++ b/setup.py Sat Oct 24 13:45:13 2020 +0200
@@ -129,7 +129,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',
@@ -139,7 +138,7 @@
],
platforms='any',
license='GPL-3',
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=[
'lxml >= 2.0',
'relatorio[fodt] >= 0.7.0',
diff -r 662ae82c0f5e -r 60c18f9eb778 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,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://}